:root {
    --font-family-primary: Inter, sans-serif;
    --primary: #0774ff;
    --primary-600: #005ee0;
    --yellow: #ffc107;
    --ink: #1a1a1a;
    --bg: #ffffff;
    --surface: #f8f9fa;
    --muted: #6b7280;
    --border: #e6e8ee;
    --radius: 18px;
    --gradient-brand: linear-gradient(135deg,#0774ff,#4f9dff);
    --gradient-cta: linear-gradient(135deg,#0556c2,#0b1a3f);
    --shadow-soft: 0 12px 40px -12px rgba(7,116,255,.28);
    --shadow-card: 0 8px 30px -10px rgba(15,23,42,.12);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family-primary);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6,.display-3,.display-4,.display-5 {
    font-family: var(--font-family-primary);
    letter-spacing: -.02em
}

.btn {
    font-family: var(--font-family-primary)
}

a {
    text-decoration: none
}

.bg-surface {
    background: var(--surface)
}

.section-pad {
    padding: 6rem 0
}

.section-pad-top {
    padding: 8rem 0 5rem
}

.letter {
    letter-spacing: .18em
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.eyebrow {
    display: inline-block;
    padding: .35rem .9rem;
    border-radius: 999px;
    background: rgba(7,116,255,.12);
    color: var(--primary);
    font-weight: 700;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em
}

.section-head {
    max-width: 760px;
    margin: 0 auto
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1rem 0;
    transition: .3s
}

.site-header.scrolled {
    padding: .5rem 0
}

.site-header.scrolled .nav-shell, .site-header--inner .nav-shell {
    background: rgba(255,255,255,.97)
}

.nav-shell {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    transition: .3s;
    position: relative
}

.navbar-brand {
    padding: 0;
    line-height: 1
}

.site-logo {
    height: 58px!important;
    width: auto!important;
    display: block;
    object-fit: contain;
    max-height: none!important
}

.site-logo--footer {
    height: 62px!important;
    filter: brightness(0) invert(1)
}

.navbar-nav {
    align-items: center
}

.nav-link {
    color: rgba(26,26,26,.78)!important;
    font-weight: 500;
    font-size: .95rem
}

.nav-link:hover {
    color: var(--primary)!important
}

/* Mega Menu */
.mega-parent {
    position: static
}

.mega-trigger .mega-arrow {
    transition: rotate .25s;
    display: inline-block
}

.mega-parent.is-open .mega-arrow {
    rotate: 180deg
}

.mega-drop {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 24px 70px -12px rgba(15,23,42,.2);
    padding: 1.75rem 2rem 1.25rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s,transform .22s,visibility .22s;
    pointer-events: none;
    z-index: 1040
}

.mega-parent.is-open .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all
}

.mega-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem
}

.mega-col-head {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: .85rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .4rem
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .55rem .65rem;
    border-radius: 12px;
    text-decoration: none;
    transition: .2s;
    margin-bottom: .15rem
}

.mega-item:hover {
    background: var(--surface)
}

.mega-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #fff;
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.15)
}

.mega-item-body strong {
    font-size: .875rem;
    color: var(--ink);
    font-weight: 600;
    display: block;
    line-height: 1.3
}

.mega-item-body small {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.3;
    display: block
}

.mega-badge {
    display: inline-block;
    padding: .1rem .45rem;
    border-radius: 999px;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .03em;
    vertical-align: middle;
    margin-left: .3rem
}

.mega-badge.hot {
    background: rgba(239,68,68,.1);
    color: #ef4444
}

.mega-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border)
}

.mega-all {
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none
}

.mega-all:hover {
    gap: .6rem
}

.mega-all i {
    transition: translate .2s
}

.mega-all:hover i {
    translate: 4px 0
}

/* Mega mobile */
@media(max-width: 991px) {
    .mega-drop {
        position:static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: .5rem 0;
        display: none;
        background: transparent
    }

    .mega-parent.open .mega-drop {
        display: block
    }

    .mega-inner {
        grid-template-columns: 1fr;
        gap: .5rem
    }

    .mega-col {
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: .9rem 1rem;
        background: #fff
    }

    .mega-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem
    }
}

/* Hero */
.hero {
    background: radial-gradient(ellipse at top left,rgba(7,116,255,.18),transparent 60%),radial-gradient(ellipse at bottom right,rgba(255,193,7,.2),transparent 60%)
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    font-size: .78rem;
    font-weight: 600
}

.pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.6s infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.btn-outline-light-custom {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--ink)
}

.btn-outline-light-custom:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.btn-dark {
    background: var(--ink);
    border-color: var(--ink)
}

.btn-dark:hover {
    background: var(--primary);
    border-color: var(--primary)
}

.blob {
    position: absolute;
    width: 380px;
    height: 380px;
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0
}

.blob-1 {
    top: -80px;
    left: -80px;
    background: rgba(7,116,255,.35);
    animation: blob 14s infinite alternate
}

.blob-2 {
    bottom: -80px;
    right: -80px;
    background: rgba(255,193,7,.35);
    animation: blob 16s infinite alternate-reverse
}

@keyframes blob {
    0% {
        transform: translate(0,0) scale(1)
    }

    100% {
        transform: translate(40px,30px) scale(1.15)
    }
}

.glass {
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.6)
}

.shadow-soft {
    box-shadow: var(--shadow-soft)
}

.shadow-card {
    box-shadow: var(--shadow-card)
}

.floaty {
    animation: floaty 6s ease-in-out infinite
}

.floaty-2 {
    animation: floaty 6s ease-in-out infinite 1.5s
}

@keyframes floaty {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.dashboard-mock {
    padding: .5rem
}

.dot-red,.dot-yellow,.dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dot-red {
    background: #f87171
}

.dot-yellow {
    background: #fbbf24
}

.dot-green {
    background: #34d399
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem
}

.ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem
}

.bg-primary-soft {
    background: rgba(7,116,255,.12)
}

.text-primary {
    color: var(--primary)!important
}

.opacity-90 {
    opacity: .9
}

.bg-warning-soft {
    background: rgba(255,193,7,.18)
}

.text-warning {
    color: #b45309!important
}

.bg-success-soft {
    background: rgba(34,197,94,.15)
}

.text-success {
    color: #16a34a!important
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: .4rem;
    height: 110px
}

.chart-bars span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: var(--gradient-brand)
}

.float-card {
    position: absolute;
    left: -20px;
    top: 35%;
    padding: .8rem 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: .6rem
}

.float-card .ic {
    margin-bottom: 0
}

/* Marquee */
.marquee {
    overflow: hidden
}

.mask-fade {
    -webkit-mask-image: linear-gradient(to right,transparent,#000 8%,#000 92%,transparent);
    mask-image: linear-gradient(to right,transparent,#000 8%,#000 92%,transparent)
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    white-space: nowrap
}

.marquee-track > span {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1.8rem;
    color: rgba(26,26,26,.4);
    transition: .3s
}

.marquee-track > span:hover {
    color: var(--primary)
}

.marquee-left {
    animation: scroll-left 40s linear infinite
}

.marquee-right {
    animation: scroll-right 40s linear infinite
}

.pause-hover:hover {
    animation-play-state: paused
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

/* ── Shared badge ── */
.svc-badge-hot {
    display: inline-block;
    padding: .1rem .45rem;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    margin-left: .35rem;
    vertical-align: middle;
    background: rgba(239,68,68,.1);
    color: #ef4444
}

.svc-badge-new {
    display: inline-block;
    padding: .1rem .45rem;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    margin-left: .35rem;
    vertical-align: middle;
    background: rgba(7,116,255,.1);
    color: var(--primary)
}

/* ── Web & Digital — Bento Grid ── */
.web-bento {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.25rem
}

.wb-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.6rem;
    transition: .28s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: var(--ink)
}

.wb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -16px rgba(15,23,42,.15);
    border-color: transparent;
    color: var(--ink)
}

.wb-card--feat {
    background: linear-gradient(145deg,#faf7ff 0%,#fff 55%);
    border-color: rgba(124,58,237,.18)
}

.wb-card--feat:hover {
    box-shadow: 0 20px 50px -16px rgba(124,58,237,.22);
    border-color: rgba(124,58,237,.15)
}

.wb-card--wide {
    background: linear-gradient(145deg,#f0f7ff 0%,#fff 55%);
    border-color: rgba(7,116,255,.15)
}

.wb-card--wide:hover {
    box-shadow: 0 20px 50px -16px rgba(7,116,255,.18);
    border-color: rgba(7,116,255,.12)
}

.wb-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
    margin-bottom: 1.1rem
}

.wb-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: .9rem 0 .4rem;
    color: var(--ink)
}

.wb-card p {
    font-size: .825rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0
}

.wb-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: .85rem
}

.wb-card:hover .wb-link i {
    translate: 4px 0
}

.wb-link i {
    transition: translate .2s
}

.wb-corner-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: .25rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    background: rgba(124,58,237,.1);
    color: #7c3aed
}

/* ── AI & Automation ── */
.ai-svc-section {
    background: #0a1628;
    position: relative;
    overflow: hidden
}

.ai-svc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%,rgba(7,116,255,.2) 0%,transparent 70%);
    pointer-events: none
}

.ai-svc-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
    align-items: center
}

/* Splash visual */
.ai-splash {
    position: relative;
    background: linear-gradient(145deg,#0d1b3e,#0e1e42);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 28px;
    padding: 3rem 2rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.splash-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle,rgba(7,116,255,.4) 0%,transparent 65%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: glowpulse 3.5s ease-in-out infinite;
    pointer-events: none
}

.splash-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none
}

.splash-ring-1 {
    width: 210px;
    height: 210px;
    border: 1px dashed rgba(7,116,255,.25);
    animation: ringspin 22s linear infinite
}

.splash-ring-2 {
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(7,116,255,.12);
    animation: ringspin 32s linear infinite reverse
}

.splash-orb {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(7,116,255,.8),0 0 90px rgba(7,116,255,.35);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2
}

.splash-float {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    animation: floatbob 3.5s ease-in-out infinite;
    z-index: 2
}

.splash-float:nth-child(2) {
    animation-delay: 0s
}

.splash-float:nth-child(3) {
    animation-delay: -1.2s
}

.splash-float:nth-child(4) {
    animation-delay: -2.4s
}

.splash-float:nth-child(5) {
    animation-delay: -.8s
}

.splash-center {
    position: relative;
    z-index: 2
}

.splash-center h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.3
}

.splash-center p {
    color: rgba(255,255,255,.5);
    font-size: .875rem
}

.splash-stat {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: .45rem 1rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    z-index: 3;
    white-space: nowrap
}

.splash-stat span {
    font-size: .77rem;
    color: rgba(255,255,255,.8)
}

.splash-stat strong {
    color: #fff
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: sdotpulse 2s ease-in-out infinite
}

.sdot-green {
    background: #10b981
}

.sdot-blue {
    background: #0774ff
}

/* AI service cards */
.ai-svc-head .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75)
}

.ai-svc-head h2 {
    color: #fff
}

.ai-svc-head p {
    color: rgba(255,255,255,.45)
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem
}

.ai-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 1.35rem;
    text-decoration: none;
    display: block;
    color: #fff;
    transition: .25s
}

.ai-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(7,116,255,.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(7,116,255,.2);
    color: #fff
}

.ai-card-ic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.3)
}

.ai-card strong {
    font-size: .9rem;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    margin-bottom: .35rem;
    color: #fff
}

.ai-card p {
    font-size: .775rem;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
    margin: 0
}

/* Animations */
@keyframes glowpulse {
    0%,100% {
        opacity: .6;
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1.2)
    }
}

@keyframes ringspin {
    to {
        transform: translate(-50%,-50%) rotate(360deg)
    }
}

@keyframes floatbob {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes sdotpulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

@media(max-width: 991px) {
    .web-bento {
        grid-template-columns:1fr 1fr
    }

    .ai-svc-layout {
        grid-template-columns: 1fr
    }

    .ai-splash {
        min-height: 320px
    }
}

@media(max-width: 575px) {
    .web-bento {
        grid-template-columns:1fr
    }

    .ai-cards-grid {
        grid-template-columns: 1fr
    }
}

/* Why */
.why-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .3s
}

.why-card:hover {
    box-shadow: 0 0 50px -10px rgba(7,116,255,.4)
}

.why-ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-soft)
}

/* Process */
.process-section {
    background: #0a1628;
    color: #fff;
    overflow: hidden;
    position: relative
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(7,116,255,.18) 0%, transparent 70%);
    pointer-events: none
}

.process-section .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75)
}

.process-section .text-muted {
    color: rgba(255,255,255,.5)!important
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
    position: relative;
    align-items: start
}

.process-track::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1px;
    background: linear-gradient(90deg,rgba(7,116,255,.6),rgba(79,157,255,.8),rgba(7,116,255,.6));
    z-index: 0
}

.p-card {
    position: relative;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    transition: .3s;
    backdrop-filter: blur(8px)
}

.p-card:hover {
    background: rgba(255,255,255,.09);
    transform: translateY(-4px);
    border-color: rgba(7,116,255,.5);
    box-shadow: 0 20px 50px -15px rgba(7,116,255,.35)
}

.p-ghost {
    position: absolute;
    top: -12px;
    right: 10px;
    font-size: 5.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk',sans-serif;
    line-height: 1;
    color: #fff;
    opacity: .04;
    user-select: none;
    pointer-events: none
}

.p-badge {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px -8px rgba(7,116,255,.6);
    margin-bottom: 1.25rem
}

.p-card h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.p-card p {
    color: rgba(255,255,255,.55);
    font-size: .875rem;
    margin-bottom: 1.25rem
}

.p-tag {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 999px;
    background: rgba(7,116,255,.18);
    border: 1px solid rgba(7,116,255,.4);
    color: rgba(79,157,255,1);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em
}

@media(max-width: 991px) {
    .process-track {
        grid-template-columns:repeat(2,1fr)
    }

    .process-track::before {
        display: none
    }
}

@media(max-width: 575px) {
    .process-track {
        grid-template-columns:1fr
    }
}

/* Portfolio */
.filter-btn {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 600;
    font-size: .88rem;
    transition: .2s
}

.filter-btn:hover {
    border-color: var(--primary)
}

.filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.portfolio-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s
}

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

.portfolio-thumb {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden
}

.portfolio-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 50%)
}

.portfolio-thumb .cat {
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: #fff;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1
}

.grad-seo {
    background: linear-gradient(135deg,#3b82f6,#06b6d4)
}

.grad-ecom {
    background: linear-gradient(135deg,#ec4899,#f43f5e)
}

.grad-crm {
    background: linear-gradient(135deg,#f59e0b,#f97316)
}

.grad-erp {
    background: linear-gradient(135deg,#10b981,#14b8a6)
}

.grad-ai {
    background: linear-gradient(135deg,#8b5cf6,#6366f1)
}

.grad-web {
    background: linear-gradient(135deg,#0ea5e9,#2563eb)
}

.portfolio-card .body {
    padding: 1.1rem 1.25rem 1.25rem
}

.portfolio-card .result {
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    margin: 0
}

/* Case studies */
.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .3s
}

.case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft)
}

.ba-row {
    display: flex;
    justify-content: space-between;
    padding: .6rem .8rem;
    border-radius: 10px;
    background: var(--surface);
    font-size: .9rem;
    margin-top: .5rem
}

.ba-row.after {
    background: rgba(7,116,255,.1);
    color: var(--primary)
}

.ba-row.after strong {
    color: var(--primary)
}

/* Stats */
.stats-section {
    background: var(--gradient-cta)
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.15), transparent 40%)
}

.counter {
    font-family: 'Space Grotesk'
}

/* Industries */
.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: .3s;
    cursor: default
}

.industry-card i {
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: .6rem;
    transition: .3s
}

.industry-card:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.industry-card:hover i {
    color: var(--yellow)
}

/* Testimonials */
.testi-card {
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    white-space: normal
}

.testi-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.testi-card p {
    font-size: .93rem;
    color: #374151
}

.testi-card .stars i {
    color: var(--yellow);
    font-size: .95rem
}

/* Tech Stack */
.stack-section {
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.stack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(7,116,255,.14) 0%, transparent 70%);
    pointer-events: none
}

.stack-section .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7)
}

.stack-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 2.5rem
}

.stab {
    padding: .5rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    letter-spacing: .02em
}

.stab:hover {
    border-color: rgba(7,116,255,.5);
    color: #fff;
    background: rgba(7,116,255,.15)
}

.stab.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(7,116,255,.45)
}

.stack-panel {
    display: none
}

.stack-panel.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadePanel .3s ease
}

.tech-tile {
    width: 110px;
    flex-shrink: 0
}

@keyframes fadePanel {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.tech-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    padding: 1.25rem .75rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: .25s;
    cursor: default;
    text-align: center
}

.tech-tile:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-3px)
}

.tech-tile img,.tech-tile svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3))
}

.tech-tile span {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    line-height: 1.2
}

.stack-divider {
    width: 1px;
    background: rgba(255,255,255,.08);
    align-self: stretch;
    display: none
}

/* FAQ */
.faq-item {
    background: #fff!important;
    border: 1px solid var(--border)!important;
    border-radius: 16px!important;
    margin-bottom: .75rem;
    overflow: hidden
}

.faq-item .accordion-button {
    background: #fff;
    font-weight: 600;
    box-shadow: none!important;
    border-radius: 16px!important
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #fff
}

.faq-item .accordion-button::after {
    background-image: none;
    content: "\F4FE";
    font-family: 'bootstrap-icons';
    color: var(--primary);
    transform: none;
    transition: .3s
}

.faq-item .accordion-button:not(.collapsed)::after {
    content: "\F2EA"
}

/* Blog */
.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    height: 100%
}

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

.blog-thumb {
    aspect-ratio: 16/9;
    position: relative
}

.blog-thumb .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700
}

.grad-1 {
    background: linear-gradient(135deg,#3b82f6,#06b6d4)
}

.grad-2 {
    background: linear-gradient(135deg,#8b5cf6,#d946ef)
}

.grad-3 {
    background: linear-gradient(135deg,#f59e0b,#f97316)
}

/* CTA */
.cta-box {
    background: var(--gradient-cta);
    border-radius: 28px;
    padding: 4rem 2rem
}

.blob-y {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,193,7,.35);
    filter: blur(80px);
    border-radius: 50%
}

.blob-w {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,.15);
    filter: blur(80px);
    border-radius: 50%
}

.btn-warning {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink)
}

.btn-warning:hover {
    transform: translateY(-2px)
}

.glass-btn {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    backdrop-filter: blur(10px)
}

.glass-btn:hover {
    background: rgba(255,255,255,.25);
    color: #fff
}

/* Contact */
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(15,23,42,.06)
}

.cf-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .35rem;
    display: block;
    letter-spacing: .01em
}

.cf-input {
    border-radius: 10px!important;
    border: 1px solid var(--border)!important;
    padding: .55rem .9rem!important;
    font-size: .9rem!important;
    color: var(--ink);
    background: #fff;
    transition: .2s!important;
    box-shadow: none!important
}

.cf-input:focus {
    border-color: var(--primary)!important;
    box-shadow: 0 0 0 3px rgba(7,116,255,.1)!important;
    outline: none
}

.cf-input::placeholder {
    color: #adb5bd;
    font-size: .875rem
}

textarea.cf-input {
    resize: vertical;
    min-height: 100px
}

.cf-btn {
    padding: .6rem 2rem;
    font-size: .9rem;
    background: var(--gradient-brand);
    border: none;
    box-shadow: var(--shadow-soft);
    transition: .25s
}

.cf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7,116,255,.35)
}

/* Captcha — flat professional style */
.captcha-flat {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap
}

.captcha-flat-refresh {
    width: 38px;
    height: 38px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    color: #374151;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color .2s,border-color .2s,transform .35s;
    text-decoration: none;
    padding: 0;
    line-height: 1
}

.captcha-flat-refresh:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg)
}

.captcha-flat-code {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .28em;
    color: var(--ink);
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: .42rem 1.4rem;
    min-width: 110px;
    text-align: center;
    user-select: none;
    font-family: 'Space Grotesk',monospace;
    background: #fafafa;
    flex-shrink: 0
}

.captcha-flat-input {
    flex: 1;
    min-width: 130px;
    border: 1.5px solid #d1d5db!important;
    border-radius: 999px!important;
    padding: .42rem 1.25rem!important;
    font-size: .9rem!important;
    color: var(--ink);
    background: #fff;
    outline: none;
    box-shadow: none!important;
    transition: border-color .2s!important;
    font-family: var(--font-family-primary)
}

.captcha-flat-input:focus {
    border-color: var(--primary)!important;
    box-shadow: 0 0 0 3px rgba(7,116,255,.08)!important
}

.captcha-flat-input::placeholder {
    color: #9ca3af;
    font-size: .875rem
}

.info-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.15rem;
    box-shadow: 0 2px 12px rgba(15,23,42,.05)
}

.info-card .ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 1rem;
    margin: 0;
    flex-shrink: 0
}

.info-card small {
    font-size: .72rem
}

.info-card strong {
    font-size: .9rem
}

.map-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 180px
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0
}

/* Footer */
.site-footer {
    background: #0b0d12
}

.site-footer ul a {
    color: rgba(255,255,255,.6);
    transition: .2s
}

.site-footer ul a:hover {
    color: #fff
}

.site-footer ul li {
    margin-bottom: .5rem
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.social:hover {
    background: var(--primary);
    color: #fff
}

.news-input {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 999px!important
}

.news-input::placeholder {
    color: rgba(255,255,255,.5)
}

.news-input:focus {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: var(--primary);
    box-shadow: none
}

/* Floating buttons */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-soft);
    z-index: 1040;
    transition: .2s
}

.float-whatsapp:hover {
    transform: scale(1.08);
    color: #fff
}

.float-top {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    border: 0;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    z-index: 1040;
    transition: .2s
}

.float-top.show {
    display: flex
}

.float-top:hover {
    background: var(--primary)
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s
}

#loader.hide {
    opacity: 0;
    pointer-events: none
}

.loader-ring {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(7,116,255,.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@media (max-width: 991px) {
    .display-3 {
        font-size:2.5rem
    }

    .section-pad {
        padding: 4rem 0
    }

    .section-pad-top {
        padding: 7rem 0 3rem
    }
}

/* ══ Mobile Drawer ══ */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,.55);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s,visibility .3s;
    backdrop-filter: blur(2px)
}

.mob-overlay.open {
    opacity: 1;
    visibility: visible
}

.mob-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1041;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,.18);
    transition: right .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto
}

.mob-drawer.open {
    right: 0
}

.mob-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border)
}

.mob-close {
    background: none;
    border: none;
    font-size: 1.35rem;
    color: var(--ink);
    cursor: pointer;
    padding: .25rem;
    line-height: 1;
    border-radius: 8px;
    transition: .2s
}

.mob-close:hover {
    background: var(--surface)
}

.mob-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1
}

.mob-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: .85rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: .2s;
    display: flex;
    align-items: center;
    gap: .5rem
}

.mob-link:hover,.mob-link.active {
    color: var(--primary);
    background: rgba(7,116,255,.05)
}

.mob-link.active {
    border-left: 3px solid var(--primary)
}

.mob-drawer-foot {
    padding: 1.25rem 1.25rem 1.75rem;
    border-top: 1px solid var(--border)
}

.mob-contact-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none
}

.mob-contact-link:hover {
    color: var(--primary)
}

/* Mobile Services Accordion */
.mob-svc-wrap {
    display: flex;
    flex-direction: column
}

.mob-svc-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: .85rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    transition: .2s
}

.mob-svc-toggle:hover,.mob-svc-wrap.active .mob-svc-toggle {
    color: var(--primary);
    background: rgba(7,116,255,.05)
}

.mob-svc-wrap.active .mob-svc-toggle {
    border-left: 3px solid var(--primary)
}

.mob-svc-arrow {
    font-size: .82rem;
    color: var(--muted);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0
}

.mob-svc-wrap.open .mob-svc-arrow {
    transform: rotate(180deg);
    color: var(--primary)
}

.mob-svc-drop {
    display: none;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: .5rem .85rem .85rem
}

.mob-svc-wrap.open .mob-svc-drop {
    display: flex
}

.mob-svc-cat {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .09em;
    color: var(--muted);
    text-transform: uppercase;
    padding: .75rem .5rem .3rem;
    display: flex;
    align-items: center;
    gap: .3rem
}

.mob-svc-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .55rem .65rem;
    border-radius: 10px;
    color: var(--ink);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: .18s;
    position: relative
}

.mob-svc-item:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(7,116,255,.08)
}

.mob-svc-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .78rem;
    flex-shrink: 0
}

.mob-svc-badge {
    margin-left: auto;
    font-size: .58rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: 999px;
    background: rgba(239,68,68,.12);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,.2);
    letter-spacing: .04em
}

.mob-svc-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .65rem;
    padding: .62rem 1rem;
    border-radius: 10px;
    background: rgba(7,116,255,.07);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(7,116,255,.18);
    transition: .2s
}

.mob-svc-all:hover {
    background: rgba(7,116,255,.13);
    color: var(--primary)
}

/* Footer links & extras */
.footer-links li {
    margin-bottom: .45rem
}

.footer-links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: .4rem
}

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

.footer-links a::before {
    content: '→';
    font-size: .7rem;
    opacity: 0;
    transition: .2s;
    margin-right: -8px
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 0
}

.footer-contact-link {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .82rem;
    transition: .2s
}

.footer-contact-link:hover {
    color: #fff
}

/* ══ Inner Pages ══ */
.page-hero {
    padding: 9rem 0 5rem;
    background: #0a1628;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(7,116,255,.28),transparent 70%);
    pointer-events: none
}

.page-hero h1 {
    color: #fff
}

.page-hero .lead {
    color: rgba(255,255,255,.6)
}

.page-hero .breadcrumb {
    margin-bottom: 1.25rem;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    overflow: hidden
}

.page-hero .breadcrumb-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .85rem;
    line-height: 1
}

.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,.35);
    font-size: .85rem;
    line-height: 1;
    padding-top: 2px
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
    line-height: 1
}

/* About */
.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .3s
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary)
}

.value-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.1rem
}

.stat-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center
}

.stat-pill .num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    transition: .3s;
    text-align: center
}

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

.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--surface)
}

.team-avatar-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--border)
}

.team-body {
    padding: 1.25rem 1.25rem 1.5rem
}

.team-role {
    font-size: .78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em
}

/* Service page */
.feature-check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .85rem
}

.feature-check .fc-ic {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    margin-top: .1rem
}

.price-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: .3s;
    position: relative
}

.price-card:hover,.price-card--popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft)
}

.price-card--popular {
    background: linear-gradient(160deg,#f0f7ff,#fff)
}

.price-popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-brand);
    color: #fff;
    padding: .3rem 1.1rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    color: var(--ink);
    line-height: 1
}

.price-check {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    margin-bottom: .6rem
}

.price-check i {
    color: var(--primary);
    flex-shrink: 0
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    margin: .3rem
}

.tech-pill img {
    width: 20px;
    height: 20px;
    object-fit: contain
}

/* Blog */
.blog-hero-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: .3s
}

.blog-hero-card:hover {
    box-shadow: 0 16px 50px rgba(15,23,42,.12)
}

.blog-hero-thumb {
    min-height: 360px;
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
    position: relative
}

.blog-hero-body {
    padding: 2.5rem
}

.blog-card2 {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    height: 100%
}

.blog-card2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card)
}

.blog-card2 .thumb {
    height: 180px;
    position: relative
}

.blog-card2 .body {
    padding: 1.25rem
}

.cat-tag {
    display: inline-block;
    padding: .2rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em
}

.cat-seo {
    background: rgba(16,185,129,.1);
    color: #059669
}

.cat-ai {
    background: rgba(7,116,255,.1);
    color: var(--primary)
}

.cat-growth {
    background: rgba(245,158,11,.1);
    color: #d97706
}

.cat-web {
    background: rgba(124,58,237,.1);
    color: #7c3aed
}

.cat-crm {
    background: rgba(239,68,68,.1);
    color: #ef4444
}

.blog-filter-btn {
    padding: .45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s
}

.blog-filter-btn.active,.blog-filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

/* ══ Case Studies — Listing ══ */
.cs-featured {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card)
}

.cs-featured-cover {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end
}

.cs-featured-overlay {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    background: linear-gradient(to top,rgba(5,10,30,.9) 0%,rgba(5,10,30,.4) 60%,transparent 100%);
    width: 100%
}

.cs-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: .3s;
    overflow: hidden
}

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

.cs-card-thumb {
    height: 160px;
    position: relative;
    overflow: hidden
}

.cs-card-body {
    padding: 1.25rem;
    flex: 1
}

.cs-card-foot {
    padding: .85rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border)
}

.cs-card-metric {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.9);
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
    z-index: 1
}

.cs-mini-metric {
    background: var(--surface);
    border-radius: 10px;
    padding: .5rem .85rem;
    text-align: center
}

/* Homepage case card thumbnail */
.cs-home-thumb {
    position: relative;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: .85rem
}

.cs-home-metric {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,255,255,.9);
    z-index: 1
}

/* ══ Case Study Detail ══ */
.cs-metrics-box {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.cs-metric-item {
    text-align: center;
    padding: .75rem
}

.cs-metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.cs-metric-label {
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    margin-top: .3rem
}

.cs-ba-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card)
}

.cs-ba-side {
    flex: 1;
    text-align: center
}

.cs-ba-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: .4rem
}

.cs-ba-tag {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: .5rem
}

.cs-ba-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ink)
}

.cs-ba-arrow {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0
}

.cs-section {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start
}

.cs-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: .2rem
}

.cs-rich-content {
    color: var(--muted);
    line-height: 1.85
}

.cs-rich-content p {
    margin-bottom: .85rem
}

.cs-rich-content h1,.cs-rich-content h2,.cs-rich-content h3 {
    color: var(--ink);
    font-weight: 700;
    margin: 1.25rem 0 .5rem
}

.cs-rich-content ul,.cs-rich-content ol {
    padding-left: 1.4rem;
    margin-bottom: .85rem
}

.cs-rich-content li {
    margin-bottom: .35rem
}

.cs-rich-content strong {
    color: var(--ink)
}

.cs-rich-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    color: var(--muted);
    font-style: italic;
    margin: 1rem 0
}

.cs-result-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1rem
}

.cs-testimonial {
    background: var(--surface);
    border-left: 4px solid var(--primary);
    border-radius: 0 16px 16px 0;
    padding: 2rem;
    position: relative
}

.cs-quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: .2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1
}

.cs-quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 1rem
}

.cs-quote-author {
    border-top: 1px solid var(--border);
    padding-top: .85rem
}

.cs-sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem
}

.cs-fact-row {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .75rem 0;
    border-bottom: 1px solid var(--border)
}

.cs-fact-row:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.cs-fact-row i {
    margin-top: .1rem;
    flex-shrink: 0
}

.cs-cta-card {
    background: var(--gradient-cta);
    border-radius: 18px;
    padding: 1.75rem
}

@media(max-width: 767px) {
    .blog-hero-card {
        grid-template-columns:1fr
    }

    .blog-hero-thumb {
        min-height: 220px
    }
}

/* ══ Media Room ══ */
.media-featured {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card)
}

.media-featured-visual {
    background: var(--gradient-cta);
    min-height: 280px;
    position: relative
}

.media-featured-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 0%,rgba(7,116,255,.35),transparent 70%);
    pointer-events: none
}

.media-featured-body {
    padding: 2.5rem
}

.media-src-badge {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.media-src-inline {
    font-size: .78rem;
    font-weight: 700;
    color: var(--muted)
}

.media-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: .3s;
    overflow: hidden
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(7,116,255,.2)
}

.media-card-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1.25rem .75rem;
    border-bottom: 1px solid var(--border)
}

.media-card-body {
    padding: 1.1rem 1.25rem;
    flex: 1
}

.media-card-foot {
    padding: .85rem 1.25rem 1.1rem;
    border-top: 1px solid var(--border)
}

.media-src-dot {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.media-read-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: .2s
}

.media-read-link:hover {
    color: var(--primary-600);
    gap: .5rem
}

.media-award-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: .3s
}

.media-award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card)
}

.media-award-ic {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto
}

.media-asset-link {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    transition: .2s
}

.media-asset-link:hover {
    background: rgba(7,116,255,.2);
    border-color: rgba(7,116,255,.4);
    color: #fff
}

.media-asset-link i:first-child {
    font-size: 1.1rem;
    color: #60a5fa;
    flex-shrink: 0
}

.media-logos-row {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: .75rem;
    align-items: center
}

.media-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .85rem .5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: .3s
}

.media-logo-card:hover {
    box-shadow: var(--shadow-card);
    border-color: rgba(7,116,255,.2);
    transform: translateY(-3px)
}

.media-logo-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px
}

.media-logo-img-wrap img {
    max-width: 100%;
    max-height: 36px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: .3s
}

.media-logo-card:hover .media-logo-img-wrap img {
    filter: grayscale(0%)
}

.media-logo-fallback {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface);
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
    align-items: center;
    justify-content: center
}

@media(max-width: 991px) {
    .media-logos-row {
        grid-template-columns:repeat(4,1fr);
        gap: .6rem
    }
}

@media(max-width: 575px) {
    .media-logos-row {
        grid-template-columns:repeat(2,1fr)
    }
}

.media-newsletter {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 4rem 2rem
}

@media(max-width: 767px) {
    .media-featured-body {
        padding:1.5rem
    }

    .media-newsletter {
        padding: 2.5rem 1.25rem
    }
}

/* ══ Blog Detail Page ══ */
/* Article Hero */
.article-hero {
    padding: 9rem 0 4rem;
    position: relative;
    overflow: hidden
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.article-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(7,116,255,.28),transparent 70%);
    pointer-events: none
}

.article-hero .breadcrumb {
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    overflow: hidden
}

.article-hero .breadcrumb-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1
}

.article-hero .breadcrumb-item a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .85rem;
    line-height: 1
}

.article-hero .breadcrumb-item.active {
    color: rgba(255,255,255,.35);
    font-size: .85rem;
    line-height: 1
}

.article-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
    line-height: 1
}

.article-lead {
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px
}

.article-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.25)
}

/* Cover strip */
.article-cover-strip {
    height: 280px;
    position: relative;
    overflow: hidden
}

.article-cover-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ai-cover-icon {
    font-size: 5rem;
    color: rgba(255,255,255,.15);
    position: absolute;
    z-index: 1
}

.ai-cover-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px dashed rgba(255,255,255,.18)
}

.ai-cover-ring-1 {
    width: 160px;
    height: 160px;
    animation: ringspin 20s linear infinite
}

.ai-cover-ring-2 {
    width: 260px;
    height: 260px;
    animation: ringspin 30s linear infinite reverse
}

.ai-cover-ring-3 {
    width: 380px;
    height: 380px;
    animation: ringspin 45s linear infinite;
    border-color: rgba(255,255,255,.08)
}

.ai-cover-chips {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
    z-index: 2;
    padding: 0 2rem
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem 1rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(8px)
}

/* Article body typography */
.article-body {
    font-size: 1.06rem;
    line-height: 1.82;
    color: #2d3748
}

.article-intro {
    font-size: 1.15rem;
    color: #1a202c;
    line-height: 1.8;
    font-weight: 500;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem
}

.article-body h2 {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    padding-top: .5rem
}

.article-body h3 {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2rem 0 .75rem
}

.article-body p {
    margin-bottom: 1.25rem
}

.article-body em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500
}

/* Callouts */
.article-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    margin: 2rem 0;
    font-size: .95rem;
    line-height: 1.65
}

.article-callout--blue {
    background: rgba(7,116,255,.07);
    border-left: 4px solid var(--primary)
}

.article-callout--green {
    background: rgba(16,185,129,.07);
    border-left: 4px solid #10b981
}

.article-callout--yellow {
    background: rgba(245,158,11,.08);
    border-left: 4px solid #f59e0b
}

.callout-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: .1rem
}

.article-callout--blue .callout-icon {
    color: var(--primary)
}

.article-callout--green .callout-icon {
    color: #10b981
}

.article-callout--yellow .callout-icon {
    color: #f59e0b
}

/* Lists */
.article-list {
    padding-left: 1.25rem;
    margin: 1rem 0 1.5rem
}

.article-list li {
    margin-bottom: .6rem
}

.article-list--numbered {
    list-style: decimal
}

/* Stats row */
.article-stat-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin: 2rem 0;
    background: var(--surface);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border)
}

.article-stat-card {
    text-align: center
}

.stat-num {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    margin-bottom: .35rem
}

.stat-label {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.4
}

/* Blockquote */
.article-quote {
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: rgba(7,116,255,.04);
    border-radius: 0 12px 12px 0
}

.article-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink);
    margin-bottom: .5rem
}

.article-quote footer {
    font-size: .85rem;
    color: var(--muted)
}

/* Implementation steps */
.implementation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0
}

.impl-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    transition: .25s
}

.impl-step:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(7,116,255,.1)
}

.impl-step-num {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5rem
}

.impl-step-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.impl-step-body p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.65
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.article-tag {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    transition: .2s
}

.article-tag:hover {
    background: rgba(7,116,255,.08);
    border-color: var(--primary);
    color: var(--primary)
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border)
}

.share-label {
    font-weight: 600;
    font-size: .88rem;
    color: var(--muted);
    white-space: nowrap
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: #fff;
    text-decoration: none;
    transition: .2s;
    cursor: pointer;
    color: var(--ink)
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1)
}

.share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff
}

.share-twitter:hover {
    background: #000;
    border-color: #000;
    color: #fff
}

.share-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff
}

/* Author bio */
.author-bio {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--border)
}

.author-role-tag {
    display: inline-block;
    padding: .2rem .7rem;
    border-radius: 999px;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px
}

.toc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden
}

.toc-header {
    padding: .9rem 1.25rem;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center
}

.toc-nav {
    padding: .75rem .5rem
}

.toc-link {
    display: block;
    padding: .42rem .75rem;
    border-radius: 8px;
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
    text-decoration: none;
    transition: .18s;
    line-height: 1.45
}

.toc-link:hover {
    color: var(--primary);
    background: rgba(7,116,255,.06)
}

.toc-link.active {
    color: var(--primary);
    font-weight: 700;
    background: rgba(7,116,255,.08)
}

.toc-link--sub {
    font-size: .8rem;
    padding-left: 1.5rem
}

/* Reading progress */
.reading-progress-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem 1.25rem
}

.reading-progress-bar {
    height: 6px;
    background: var(--surface);
    border-radius: 999px;
    overflow: hidden
}

.reading-progress-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-brand);
    border-radius: 999px;
    transition: width .2s
}

/* Sidebar CTA */
.sidebar-cta {
    background: linear-gradient(145deg,#f0f7ff,#eef3ff);
    border: 1px solid rgba(7,116,255,.15);
    border-radius: 18px;
    padding: 1.5rem
}

.sidebar-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft)
}

/* Sidebar newsletter */
.sidebar-newsletter {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem
}

/* Responsive */
@media(max-width: 767px) {
    .article-hero {
        padding:8rem 0 3rem
    }

    .article-stat-row {
        grid-template-columns: 1fr
    }

    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .ai-cover-chips {
        display: none
    }

    .article-cover-strip {
        height: 180px
    }

    .impl-step {
        flex-direction: column;
        gap: .75rem
    }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST POLISH — iPhone-grade experience across all pages
   ═══════════════════════════════════════════════════════════ */
/* ── Tablet & large-phone (≤767px) ── */
@media(max-width: 767px) {
    /* Logo */ .site-logo {
        height:44px!important
    }

    .site-logo--footer {
        height: 50px!important
    }

    /* Typography */
    .display-3 {
        font-size: 2.1rem!important;
        line-height: 1.15!important
    }

    .display-4 {
        font-size: 1.85rem!important;
        line-height: 1.2!important
    }

    .display-5 {
        font-size: 1.5rem!important;
        line-height: 1.25!important
    }

    /* Spacing */
    .section-pad {
        padding: 3.5rem 0
    }

    .section-pad-top {
        padding: 6rem 0 2.5rem
    }

    .page-hero {
        padding: 7.5rem 0 3.5rem
    }

    /* Nav shell padding */
    .nav-shell {
        padding-left: .75rem!important;
        padding-right: .75rem!important
    }

    /* CTA box */
    .cta-box {
        padding: 2.5rem 1.25rem;
        border-radius: 20px
    }

    /* Testimonial cards — never wider than the screen */
    .testi-card {
        width: 82vw;
        max-width: 340px
    }

    /* Splash stat badges overflow on mobile — hide */
    .splash-stat {
        display: none
    }

    /* Marquee text — smaller on mobile */
    .marquee-track > span {
        font-size: 1.3rem
    }

    /* CS featured cover */
    .cs-featured-cover {
        min-height: 230px
    }

    .cs-featured-overlay {
        padding: 1.5rem
    }

    .cs-featured-overlay h2 {
        font-size: 1.3rem!important
    }

    /* CS before/after card — stack vertically */
    .cs-ba-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem
    }

    .cs-ba-arrow {
        transform: rotate(90deg)
    }

    .cs-ba-side {
        flex: none;
        width: 100%
    }

    /* CS metrics */
    .cs-metric-value {
        font-size: 1.6rem
    }

    /* Article sidebar — no sticky on mobile */
    .article-sidebar {
        position: relative;
        top: auto
    }

    /* Blog hero card body */
    .blog-hero-body {
        padding: 1.5rem
    }

    /* Captcha — stack on mobile */
    .captcha-flat {
        flex-wrap: wrap
    }

    .captcha-flat-input {
        min-width: 0;
        flex: 1
    }

    /* Stat pill numbers */
    .stat-pill .num {
        font-size: 1.9rem
    }

    /* Stats counter */
    .counter {
        font-size: 1.75rem!important
    }

    /* Float buttons — slightly smaller */
    .float-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.4rem
    }

    .float-top {
        width: 40px;
        height: 40px
    }

    /* Footer newsletter form wraps on mobile */
    .site-footer form.d-flex {
        flex-wrap: wrap
    }

    .news-input {
        min-width: 120px;
        flex: 1
    }

    /* Map */
    .map-wrap {
        height: 160px
    }

    /* Page hero - only display needed to fix g-5 gap */
    .page-hero .row.g-5 {
        --bs-gutter-y: 2rem
    }
}

/* ── Small phones (≤575px) ── */
@media(max-width: 575px) {
    /* Typography */ .display-3 {
        font-size:1.85rem!important
    }

    .display-4 {
        font-size: 1.65rem!important
    }

    .display-5 {
        font-size: 1.35rem!important
    }

    /* Spacing */
    .section-pad {
        padding: 2.75rem 0
    }

    .section-pad-top {
        padding: 5.5rem 0 2rem
    }

    .page-hero {
        padding: 7rem 0 3rem
    }

    .article-hero {
        padding: 6.5rem 0 2.5rem
    }

    /* Logo */
    .site-logo {
        height: 40px!important
    }

    /* Pill badge in hero */
    .pill {
        font-size: .72rem;
        padding: .4rem .85rem
    }

    /* Blobs — scale down to avoid painting outside screen */
    .blob,.blob-y,.blob-w {
        width: 220px;
        height: 220px
    }

    /* Section head full-width */
    .section-head {
        max-width: 100%
    }

    /* Eyebrow */
    .eyebrow {
        font-size: .68rem;
        padding: .3rem .75rem
    }

    /* Why cards */
    .why-card {
        padding: 1.25rem
    }

    .why-ic {
        width: 46px;
        height: 46px;
        font-size: 1.2rem
    }

    /* Process cards */
    .p-card {
        padding: 1.5rem 1rem 1.25rem
    }

    .p-ghost {
        font-size: 3.5rem
    }

    .p-badge {
        width: 56px;
        height: 56px;
        font-size: 1.35rem
    }

    /* Info cards */
    .info-card {
        padding: .75rem 1rem
    }

    /* Contact card padding */
    .contact-card {
        padding: 1.5rem 1.25rem 1.25rem
    }

    /* Captcha on small screens */
    .captcha-flat-code {
        min-width: 90px;
        padding: .38rem 1rem;
        font-size: 1.05rem
    }

    .captcha-flat-refresh {
        width: 34px;
        height: 34px;
        font-size: 1rem
    }

    /* CS card metric */
    .cs-card-metric {
        font-size: 2rem
    }

    .cs-home-metric {
        font-size: 1.6rem
    }

    /* CS featured metrics row — wrap tighter */
    .cs-featured-overlay .d-flex.flex-wrap {
        gap: .5rem!important
    }

    .cs-featured-overlay .d-flex.flex-wrap > div {
        padding: .4rem .7rem
    }

    /* Blog filter buttons */
    .blog-filter-btn {
        font-size: .78rem;
        padding: .35rem .85rem
    }

    /* Portfolio filter buttons */
    .filter-btn {
        font-size: .8rem;
        padding: .45rem .85rem
    }

    /* Stack tab buttons */
    .stab {
        font-size: .8rem;
        padding: .4rem 1rem
    }

    /* Accordion */
    .faq-item .accordion-button {
        font-size: .9rem;
        padding: .85rem 1rem
    }

    /* Tech tiles smaller */
    .tech-tile {
        width: 88px;
        padding: 1rem .5rem
    }

    /* Media card head — category tag wraps */
    .media-card-head {
        flex-wrap: wrap;
        gap: .5rem
    }

    .media-card-head .ms-auto {
        margin-left: 0!important
    }
}

/* ── Very small phones (≤390px) ── */
@media(max-width: 390px) {
    .display-3 {
        font-size:1.65rem!important
    }

    .display-4 {
        font-size: 1.5rem!important
    }

    .display-5 {
        font-size: 1.25rem!important
    }

    .section-pad {
        padding: 2.25rem 0
    }

    .page-hero {
        padding: 6.5rem 0 2.5rem
    }

    .captcha-box {
        padding: .75rem 1rem
    }

    .cs-ba-card {
        padding: 1.25rem
    }

    .mob-link {
        font-size: 1.05rem;
        padding: .75rem 1.25rem
    }

    .contact-card {
        padding: 1.25rem 1rem 1rem
    }
}

/* ══ Service Pages ══ */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 1.75rem
}

.hero-trust span {
    font-size: .83rem;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: .45rem
}

.hero-trust i {
    color: #34d399
}

/* Browser mock */
.browser-mock {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 0;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
    overflow: hidden
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.1rem;
    background: rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.browser-url {
    flex: 1;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    padding: .32rem .9rem;
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    text-align: center
}

.browser-body {
    padding: 1.4rem
}

.dm-stat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1rem
}

.dm-stat-card .lbl {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .35rem
}

.dm-stat-card .val {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk',sans-serif
}

.dm-stat-card .delta {
    font-size: .72rem;
    font-weight: 700;
    color: #34d399
}

.dm-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: .4rem;
    height: 80px;
    margin-top: .25rem
}

.dm-chart-bars span {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: var(--gradient-brand)
}

.dm-score-ring {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0
}

.dm-score-ring svg {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg)
}

.dm-score-ring strong {
    font-size: 1.05rem;
    color: #fff;
    font-family: 'Space Grotesk',sans-serif;
    position: relative;
    z-index: 1
}

.dm-float {
    position: absolute;
    padding: .65rem .95rem;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    gap: .6rem;
    box-shadow: 0 14px 40px rgba(0,0,0,.35);
    z-index: 3
}

.dm-float-1 {
    top: -18px;
    right: -14px;
    animation: floaty 6s ease-in-out infinite
}

.dm-float-2 {
    bottom: -18px;
    left: -22px;
    animation: floaty 6s ease-in-out infinite 1.5s
}

.dm-float .ic {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0
}

.dm-float strong {
    display: block;
    font-size: .85rem;
    color: #fff;
    line-height: 1.2
}

.dm-float small {
    font-size: .68rem;
    color: rgba(255,255,255,.55)
}

/* Service cards */
.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    transition: .3s;
    position: relative
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -16px rgba(15,23,42,.15);
    border-color: transparent
}

.svc-ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.35rem;
    box-shadow: var(--shadow-soft)
}

.svc-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.svc-card p.svc-desc {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 1.1rem
}

.svc-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem
}

.svc-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .84rem;
    color: #374151;
    margin-bottom: .5rem;
    line-height: 1.4
}

.svc-feat-list i {
    color: var(--primary);
    font-size: .8rem;
    margin-top: .22rem;
    flex-shrink: 0
}

.svc-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.svc-benefit-tag {
    font-size: .7rem;
    font-weight: 700;
    padding: .28rem .7rem;
    border-radius: 999px;
    background: rgba(7,116,255,.08);
    color: var(--primary)
}

/* Process funnel */
.funnel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

.funnel-step {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: .3s
}

.funnel-step:hover {
    border-color: var(--primary);
    transform: translateX(4px)
}

.funnel-num {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .92rem;
    flex-shrink: 0;
    font-family: 'Space Grotesk',sans-serif
}

.funnel-step strong {
    display: block;
    font-size: .95rem
}

.funnel-step span {
    font-size: .8rem;
    color: var(--muted)
}

.funnel-arrow {
    color: var(--primary);
    font-size: 1.25rem;
    margin: .35rem 0;
    opacity: .55
}

/* Compare cards */
.compare-card {
    border-radius: 22px;
    padding: 2.25rem;
    height: 100%
}

.compare-bad {
    background: var(--surface);
    border: 1px solid var(--border)
}

.compare-good {
    background: linear-gradient(160deg,#f0f7ff,#fff);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-soft)
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .92rem;
    margin-bottom: .85rem;
    line-height: 1.4
}

.compare-list .bi-x-circle-fill {
    color: #ef4444;
    margin-top: .15rem;
    flex-shrink: 0
}

.compare-list .bi-check-circle-fill {
    color: #16a34a;
    margin-top: .15rem;
    flex-shrink: 0
}

/* Before/After slider */
.ba-compare {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    aspect-ratio: 16/9;
    max-height: 440px;
    user-select: none;
    cursor: ew-resize
}

.ba-side {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column
}

.ba-before {
    background: linear-gradient(160deg,#edf0f4,#dde2ea)
}

.ba-after {
    background: linear-gradient(160deg,#060d1c,#0b1a38)
}

/* ── KEY FIX: width:200% makes after fill full container width while clipped ── */
.ba-after-clip {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    overflow: hidden
}

.ba-after-clip .ba-side {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 200%
}

/* mock top bar */
.ba-mockbar {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    flex-shrink: 0
}

.ba-before .ba-mockbar {
    background: rgba(0,0,0,.04);
    border-bottom: 1px solid rgba(0,0,0,.08)
}

.ba-after .ba-mockbar {
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.06)
}

/* mock nav inside bar */
.ba-mock-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: .4rem
}

.ba-nav-logo {
    width: 52px;
    height: 10px;
    border-radius: 4px;
    background: rgba(0,0,0,.18)
}

.ba-nav-logo--brand {
    background: var(--gradient-brand)
}

.ba-nav-links {
    display: flex;
    gap: .45rem;
    flex: 1
}

.ba-nav-links span {
    width: 30px;
    height: 8px;
    border-radius: 3px;
    background: rgba(0,0,0,.1)
}

.ba-nav-links--dark span {
    background: rgba(255,255,255,.15)
}

.ba-nav-cta-pill {
    width: 56px;
    height: 20px;
    border-radius: 999px;
    background: var(--gradient-brand);
    opacity: .85
}

/* content area */
.ba-mockcontent {
    padding: 1.1rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden
}

.ba-before .ba-block {
    background: rgba(0,0,0,.09);
    border-radius: 5px;
    height: 12px
}

.ba-after .ba-block {
    background: rgba(255,255,255,.1);
    border-radius: 5px;
    height: 12px
}

.ba-before .ba-block.title {
    height: 22px;
    background: rgba(0,0,0,.16)
}

.ba-after .ba-block.title {
    height: 22px
}

.ba-after .ba-title--gradient {
    background: linear-gradient(135deg,#0774ff,#a5c8ff)!important
}

.ba-before .ba-block.btn {
    height: 30px;
    border-radius: 999px;
    background: rgba(0,0,0,.15)
}

.ba-after .ba-block.btn {
    height: 30px;
    border-radius: 999px;
    background: var(--gradient-brand)
}

.ba-btn--brand {
    box-shadow: 0 6px 18px rgba(7,116,255,.45)!important
}

/* eyebrow pill (after only) */
.ba-eyebrow-pill {
    width: 110px;
    height: 18px;
    border-radius: 999px;
    background: rgba(7,116,255,.25);
    border: 1px solid rgba(7,116,255,.4);
    margin-bottom: .4rem
}

/* speed row */
.ba-speed-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .65rem
}

.ba-speed-badge {
    display: flex;
    align-items: baseline;
    gap: 1px;
    padding: .3rem .65rem;
    border-radius: 8px;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif
}

.ba-speed-badge span {
    font-size: 1.05rem;
    line-height: 1
}

.ba-speed-badge small {
    font-size: .65rem;
    font-weight: 600
}

.ba-speed-bad {
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.3);
    color: #ef4444
}

.ba-speed-good {
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(16,185,129,.4);
    color: #10b981
}

.ba-speed-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

/* stat chips (after only) */
.ba-stat-chips {
    display: flex;
    gap: .4rem;
    flex: 1;
    flex-wrap: nowrap
}

.ba-stat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .25rem .5rem;
    border-radius: 8px;
    background: rgba(7,116,255,.14);
    border: 1px solid rgba(7,116,255,.25);
    line-height: 1.2;
    white-space: nowrap
}

.ba-stat-chip strong {
    font-size: .75rem;
    font-weight: 800;
    color: #60a5fa;
    font-family: 'Space Grotesk',sans-serif
}

.ba-stat-chip small {
    font-size: .58rem;
    color: rgba(255,255,255,.45)
}

/* grid */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .5rem;
    margin-top: .55rem
}

.ba-before .ba-card {
    background: rgba(0,0,0,.07);
    border-radius: 8px;
    height: 48px
}

.ba-after .ba-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    height: 48px
}

.ba-after .ba-card--mod {
    background: linear-gradient(135deg,rgba(7,116,255,.15),rgba(79,157,255,.06));
    border-color: rgba(7,116,255,.25)
}

/* handle + grip */
.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 0 0 4px rgba(255,255,255,.3),0 4px 24px rgba(0,0,0,.4);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: box-shadow .15s;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none
}

.ba-slider-handle:hover {
    box-shadow: 0 0 0 5px rgba(255,255,255,.5),0 4px 28px rgba(0,0,0,.5)
}

.ba-slider-grip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,.3);
    color: var(--primary);
    font-size: 1.05rem;
    transition: transform .15s
}

.ba-slider-grip:hover {
    transform: translate(-50%,-50%) scale(1.12)
}

/* labels */
.ba-label {
    position: absolute;
    top: 1rem;
    padding: .28rem .85rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    z-index: 6
}

.ba-label-before {
    left: 1rem;
    background: rgba(0,0,0,.5);
    color: #fff;
    backdrop-filter: blur(4px)
}

.ba-label-after {
    right: 1rem;
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(7,116,255,.4)
}

/* Case result cards (service pages) */
.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.85rem;
    height: 100%;
    transition: .3s
}

.case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px)
}

.case-tag {
    display: inline-block;
    padding: .25rem .8rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    margin-bottom: 1rem
}

.case-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem
}

.case-metric-row:last-child {
    border-bottom: none
}

.case-metric-row strong {
    color: var(--primary);
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.05rem
}

/* Integration/Tech cards */
.integ-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1.4rem .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: .3s;
    text-align: center
}

.integ-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(7,116,255,.25)
}

.integ-card i {
    font-size: 1.7rem;
    color: var(--primary)
}

.integ-card span {
    font-size: .75rem;
    font-weight: 600;
    color: #374151
}

/* Analytics dark section */
.analytics-section {
    background: #0a1628;
    position: relative;
    overflow: hidden
}

.analytics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 30%,rgba(7,116,255,.2),transparent 70%);
    pointer-events: none
}

.analytics-section .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8)
}

.analytics-section h2 {
    color: #fff
}

.analytics-section p.lead-muted {
    color: rgba(255,255,255,.5)
}

.an-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    padding: 1.4rem;
    height: 100%;
    transition: .3s
}

.an-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(7,116,255,.4);
    transform: translateY(-4px)
}

.an-ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: .9rem
}

.an-card strong {
    display: block;
    color: #fff;
    font-size: .92rem;
    margin-bottom: .3rem
}

.an-card span {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5
}

/* Core Web Vitals */
.cwv-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem
}

.cwv-gauge {
    text-align: center
}

.cwv-ring {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto .75rem
}

.cwv-ring svg {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg)
}

.cwv-ring strong {
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Space Grotesk',sans-serif;
    position: relative;
    z-index: 1
}

.cwv-gauge span {
    display: block;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    font-weight: 600
}

/* Process dark section */
.process-section {
    background: #0b0d12;
    color: #fff;
    overflow: hidden;
    position: relative
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(7,116,255,.16),transparent 70%);
    pointer-events: none
}

.process-section .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1.1rem
}

.p-card {
    position: relative;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 1.6rem 1.2rem 1.4rem;
    text-align: center;
    transition: .3s;
    backdrop-filter: blur(8px)
}

.p-card:hover {
    background: rgba(255,255,255,.09);
    transform: translateY(-4px);
    border-color: rgba(7,116,255,.5);
    box-shadow: 0 20px 50px -15px rgba(7,116,255,.35)
}

.p-ghost {
    position: absolute;
    top: -10px;
    right: 8px;
    font-size: 3.6rem;
    font-weight: 900;
    font-family: 'Space Grotesk',sans-serif;
    line-height: 1;
    color: #fff;
    opacity: .05;
    user-select: none;
    pointer-events: none
}

.p-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px -8px rgba(7,116,255,.6);
    margin-bottom: 1rem
}

.p-card h6 {
    color: #fff;
    font-size: .88rem;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
    z-index: 1
}

/* Opportunity cards */
.opp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    transition: .3s
}

.opp-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px)
}

.opp-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: .9rem
}

.opp-bar-track {
    height: 7px;
    background: var(--surface);
    border-radius: 999px;
    overflow: hidden;
    margin-top: .7rem
}

.opp-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--gradient-brand)
}

/* Device showcase */
.device-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap
}

.device {
    background: #fff;
    border: 8px solid var(--ink);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    position: relative
}

.device-desktop {
    width: 340px;
    height: 215px;
    border-radius: 14px
}

.device-desktop::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 14px;
    background: var(--ink);
    border-radius: 0 0 6px 6px
}

.device-tablet {
    width: 150px;
    height: 200px;
    border-radius: 18px
}

.device-mobile {
    width: 90px;
    height: 185px;
    border-radius: 22px
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg,#eef4ff,#fff);
    padding: .6rem;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.device-screen .d-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(7,116,255,.18)
}

.device-screen .d-bar.wide {
    width: 70%
}

.device-screen .d-bar.mid {
    width: 50%
}

.device-screen .d-hero {
    flex: 1;
    border-radius: 8px;
    background: var(--gradient-brand);
    opacity: .85;
    margin-top: .3rem
}

.device-label {
    text-align: center;
    margin-top: 1rem;
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink)
}

.device-wrap {
    display: flex;
    flex-direction: column;
    align-items: center
}

/* Service page responsive */
@media(max-width: 991px) {
    .process-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .device-tablet {
        display: none
    }
}

@media(max-width: 767px) {
    .browser-mock {
        margin-top:2.5rem
    }

    .dm-float {
        display: none
    }

    .compare-card {
        padding: 1.5rem
    }

    .device-row {
        gap: 1.25rem
    }

    .device-desktop {
        width: 240px;
        height: 155px
    }

    .ba-compare {
        aspect-ratio: 3/4;
        max-height: 500px
    }

    .ba-mockcontent {
        padding: .85rem 1rem
    }

    .ba-mock-nav {
        display: none
    }

    .ba-stat-chips {
        gap: .3rem
    }

    .ba-stat-chip strong {
        font-size: .7rem
    }

    .ba-grid {
        grid-template-columns: repeat(3,1fr);
        gap: .35rem
    }

    .ba-card {
        height: 38px!important
    }
}

@media(max-width: 575px) {
    .process-grid {
        grid-template-columns:1fr
    }
}

/* ══ AI Chatbot Page ══ */
.chat-mock {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 70px -16px rgba(15,23,42,.18);
    overflow: hidden
}

.chat-mock-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface)
}

.chat-mock-bot {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0
}

.chat-mock-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2
}

.chat-mock-sub {
    font-size: .72rem;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: .3rem
}

.chat-mock-sub .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.6s infinite
}

.chat-mock-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    min-height: 230px
}

.chat-bubble {
    max-width: 78%;
    padding: .6rem .9rem;
    border-radius: 14px;
    font-size: .82rem;
    line-height: 1.45;
    opacity: 0;
    animation: bubbleIn .4s ease forwards
}

.chat-bubble.bot {
    align-self: flex-start;
    background: var(--surface);
    color: var(--ink);
    border-bottom-left-radius: 4px
}

.chat-bubble.user {
    align-self: flex-end;
    background: var(--gradient-brand);
    color: #fff;
    border-bottom-right-radius: 4px
}

.chat-bubble.b1 {
    animation-delay: .2s
}

.chat-bubble.b2 {
    animation-delay: 1s
}

.chat-bubble.b3 {
    animation-delay: 1.8s
}

.chat-bubble.b4 {
    animation-delay: 2.6s
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

.chat-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: .6rem .9rem;
    background: var(--surface);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    opacity: 0;
    animation: bubbleIn .4s ease forwards;
    animation-delay: 1.45s
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9aa3b2;
    animation: typingDot 1.1s infinite
}

.chat-typing span:nth-child(2) {
    animation-delay: .15s
}

.chat-typing span:nth-child(3) {
    animation-delay: .3s
}

@keyframes typingDot {
    0%,60%,100% {
        opacity: .3;
        transform: translateY(0)
    }

    30% {
        opacity: 1;
        transform: translateY(-3px)
    }
}

.chat-mock-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--border)
}

.chat-mock-stats div {
    padding: .8rem .5rem;
    text-align: center;
    border-right: 1px solid var(--border)
}

.chat-mock-stats div:last-child {
    border-right: 0
}

.chat-mock-stats strong {
    display: block;
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.05rem;
    color: var(--ink)
}

.chat-mock-stats span {
    font-size: .66rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.hero-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: .7rem .95rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 3
}

.hero-float-card .ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    flex-shrink: 0;
    margin: 0
}

.hero-float-card strong {
    display: block;
    font-family: 'Space Grotesk',sans-serif;
    font-size: .95rem;
    line-height: 1.1;
    color: var(--ink)
}

.hero-float-card span {
    font-size: .66rem;
    color: var(--muted)
}

.sol-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.85rem;
    height: 100%;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -16px rgba(7,116,255,.18);
    border-color: rgba(7,116,255,.18)
}

.sol-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
    box-shadow: var(--shadow-soft)
}

.sol-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.sol-feat {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem
}

.sol-feat li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .82rem;
    color: #475569;
    margin-bottom: .45rem;
    line-height: 1.4
}

.sol-feat li i {
    color: var(--primary);
    font-size: .8rem;
    margin-top: .2rem;
    flex-shrink: 0
}

.sol-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding-top: .9rem;
    border-top: 1px solid var(--border)
}

.sol-benefit-tag {
    font-size: .68rem;
    font-weight: 700;
    padding: .28rem .65rem;
    border-radius: 999px;
    background: rgba(7,116,255,.1);
    color: var(--primary)
}

.flow-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 520px;
    margin: 0 auto
}

.flow-step {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    box-shadow: var(--shadow-card);
    transition: .25s
}

.flow-step:hover {
    border-color: var(--primary);
    transform: translateX(4px)
}

.flow-num {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
    font-family: 'Space Grotesk',sans-serif
}

.flow-step strong {
    display: block;
    font-size: .92rem
}

.flow-step span {
    font-size: .78rem;
    color: var(--muted)
}

.flow-arrow {
    color: var(--primary);
    font-size: 1.1rem;
    margin: .35rem 0
}

.ind-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    transition: .3s
}

.ind-card:hover {
    background: var(--ink);
    border-color: var(--ink)
}

.ind-card:hover * {
    color: #fff!important
}

.ind-card:hover .ind-ic {
    background: rgba(255,255,255,.12)
}

.ind-ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: .9rem;
    transition: .3s
}

.ind-card h6 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .4rem
}

.ind-card p {
    font-size: .78rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5
}

.compare-col {
    border-radius: 22px;
    padding: 2rem 1.85rem;
    height: 100%
}

.compare-old {
    background: var(--surface);
    border: 1px solid var(--border)
}

.compare-new {
    background: linear-gradient(160deg,#0a1628,#0d1f3f);
    border: 1px solid rgba(7,116,255,.3)
}

.compare-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .65rem 0;
    font-size: .9rem;
    border-bottom: 1px solid rgba(0,0,0,.06)
}

.compare-new .compare-row {
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.85)
}

.compare-row:last-child {
    border-bottom: 0
}

.compare-row i {
    font-size: 1rem;
    flex-shrink: 0
}

.compare-old .compare-row i {
    color: #ef4444
}

.compare-new .compare-row i {
    color: #10b981
}

.cs-chip {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 999px;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem
}

.cs-metric-wrap {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    margin-top: 1.1rem
}

.cs-metric {
    flex: 1;
    background: var(--surface);
    border-radius: 12px;
    padding: .7rem .5rem;
    text-align: center
}

.cs-metric strong {
    display: block;
    font-family: 'Space Grotesk',sans-serif;
    color: var(--primary);
    font-size: 1.1rem
}

.cs-metric span {
    font-size: .66rem;
    color: var(--muted)
}

.integ-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: 1.25rem .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: .25s;
    text-align: center;
    height: 100%
}

.integ-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary)
}

.integ-tile img,.integ-tile svg {
    width: 34px;
    height: 34px;
    object-fit: contain
}

.integ-tile span {
    font-size: .74rem;
    font-weight: 600;
    color: var(--ink)
}

.dash-section {
    background: #0a1628;
    position: relative;
    overflow: hidden
}

.dash-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%,rgba(7,116,255,.22),transparent 70%);
    pointer-events: none
}

.dash-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 1.4rem;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: .25s
}

.dash-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(7,116,255,.4)
}

.dash-card .ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin-bottom: .85rem
}

.dash-card strong {
    display: block;
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.1
}

.dash-card span {
    font-size: .78rem;
    color: rgba(255,255,255,.5)
}

.dash-bar-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .5rem
}

.dash-bar-track {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    overflow: hidden
}

.dash-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--gradient-brand)
}

.lead-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 2.5rem;
    box-shadow: 0 24px 70px -20px rgba(15,23,42,.15)
}

.sticky-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .7rem 1rem;
    display: none;
    align-items: center;
    gap: .6rem;
    box-shadow: 0 -8px 30px rgba(15,23,42,.1)
}

.sticky-cta-bar.show {
    display: flex
}

.float-consult {
    position: fixed;
    bottom: 24px;
    right: 96px;
    background: var(--gradient-brand);
    color: #fff;
    padding: .85rem 1.3rem;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .5rem;
    z-index: 1040;
    transition: .2s;
    text-decoration: none
}

.float-consult:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 16px 40px rgba(7,116,255,.4)
}

@media(max-width: 991px) {
    .float-consult {
        display:none
    }
}

@media(max-width: 767px) {
    .sticky-cta-bar {
        display:flex
    }

    ;body.has-sticky-cta {
        padding-bottom: 72px
    }
}

@media(max-width: 575px) {
    .chat-mock-body {
        min-height:200px
    }
}

/* ══ Creative Design Page ══ */
.cd-canvas {
    position: relative;
    background: linear-gradient(160deg,#0d1b3e,#0e1e42);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px -20px rgba(7,116,255,.35);
    overflow: hidden
}

.cd-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 20%,rgba(7,116,255,.25),transparent 65%);
    pointer-events: none
}

.cd-canvas-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.cd-canvas-tabs {
    display: flex;
    gap: .4rem
}

.cd-tab {
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    padding: .3rem .7rem;
    border-radius: 999px
}

.cd-tab.active {
    background: rgba(255,255,255,.1);
    color: #fff
}

.cd-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: .9rem;
    position: relative;
    z-index: 1
}

.cd-swatch {
    border-radius: 16px;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: .85rem
}

.cd-swatch span {
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.35)
}

.cd-swatch-1 {
    background: linear-gradient(135deg,#0774ff,#4f9dff)
}

.cd-swatch-2 {
    background: linear-gradient(135deg,#ffc107,#ff8a00)
}

.cd-side-stack {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.cd-mini {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: .85rem;
    backdrop-filter: blur(8px)
}

.cd-mini .lab {
    font-size: .68rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .3rem
}

.cd-mini .val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk',sans-serif
}

.cd-mini .delta {
    font-size: .72rem;
    color: #34d399;
    font-weight: 700
}

.cd-row-bars {
    display: flex;
    align-items: flex-end;
    gap: .3rem;
    height: 54px;
    margin-top: .5rem
}

.cd-row-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient-brand)
}

.cd-float-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    padding: .55rem .9rem;
    box-shadow: 0 14px 34px -8px rgba(0,0,0,.35);
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink);
    z-index: 3
}

.cd-float-tag i {
    color: var(--primary)
}

.cd-float-1 {
    top: -18px;
    right: -14px
}

.cd-float-2 {
    bottom: -16px;
    left: -18px
}

.svc-grid-cd {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem
}

.svc-card-cd {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.85rem 1.6rem;
    height: 100%;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.svc-card-cd:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px -18px rgba(7,116,255,.25);
    border-color: rgba(7,116,255,.18)
}

.svc-card-cd--wide {
    grid-column: span 2
}

.svc-ic-cd {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.15rem;
    box-shadow: var(--shadow-soft)
}

.svc-card-cd h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .55rem
}

.svc-card-cd .svc-feat {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.6;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem
}

.svc-card-cd .svc-feat li {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    margin-bottom: .4rem
}

.svc-card-cd .svc-feat li i {
    color: var(--primary);
    font-size: .7rem;
    margin-top: .35rem;
    flex-shrink: 0
}

.svc-benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    border-top: 1px solid var(--border);
    padding-top: .9rem;
    margin-top: auto
}

.svc-benefit-pill {
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(7,116,255,.08);
    color: var(--primary)
}

.cmp-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.cmp-card {
    border-radius: 24px;
    padding: 2rem;
    height: 100%
}

.cmp-card--bad {
    background: var(--surface);
    border: 1px solid var(--border)
}

.cmp-card--good {
    background: linear-gradient(160deg,#0d1b3e,#0e1e42);
    color: #fff;
    box-shadow: 0 30px 70px -20px rgba(7,116,255,.4)
}

.cmp-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06)
}

.cmp-card--good .cmp-row {
    border-bottom-color: rgba(255,255,255,.08)
}

.cmp-row:last-child {
    border-bottom: none
}

.cmp-row i {
    margin-top: .2rem;
    flex-shrink: 0
}

.cmp-card--bad .cmp-row i {
    color: #ef4444
}

.cmp-card--good .cmp-row i {
    color: #34d399
}

.cmp-card--good .text-muted {
    color: rgba(255,255,255,.5)!important
}

.cd-process-track {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 1rem;
    position: relative
}

.cd-process-track::before {
    content: '';
    position: absolute;
    top: 34px;
    left: calc(7.1% + .5rem);
    right: calc(7.1% + .5rem);
    height: 1px;
    background: linear-gradient(90deg,rgba(7,116,255,.6),rgba(79,157,255,.8),rgba(7,116,255,.6));
    z-index: 0
}

.cd-p-step {
    position: relative;
    text-align: center;
    z-index: 1
}

.cd-p-num {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .9rem;
    box-shadow: 0 10px 26px -8px rgba(7,116,255,.55);
    font-size: .95rem
}

.cd-p-step h6 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: #fff
}

.cd-p-step p {
    font-size: .74rem;
    color: rgba(255,255,255,.45);
    margin: 0;
    line-height: 1.5
}

.cd-port-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #000
}

.cd-port-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.cd-port-card:hover img {
    transform: scale(1.08)
}

.cd-port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(5,10,30,.92) 0%,rgba(5,10,30,.15) 55%,transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.1rem 1.25rem;
    opacity: 0;
    transition: .3s
}

.cd-port-card:hover .cd-port-overlay {
    opacity: 1
}

.cd-port-cat {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #4f9dff;
    margin-bottom: .25rem
}

.cd-port-title {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    margin: 0
}

.cd-port-zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: .3s;
    transform: translateY(-6px)
}

.cd-port-card:hover .cd-port-zoom {
    opacity: 1;
    transform: translateY(0)
}

.cd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5,10,30,.94);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(6px)
}

.cd-lightbox.open {
    display: flex
}

.cd-lightbox-inner {
    max-width: 780px;
    width: 100%;
    background: #0e1e42;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08)
}

.cd-lightbox-thumb {
    aspect-ratio: 16/9;
    position: relative
}

.cd-lightbox-body {
    padding: 1.75rem 2rem 2rem
}

.cd-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: .2s
}

.cd-lightbox-close:hover {
    background: rgba(255,255,255,.2)
}

.cd-tools-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1rem
}

.cd-tool-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    padding: 1.4rem .75rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: .25s;
    text-align: center
}

.cd-tool-tile:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-3px)
}

.cd-tool-ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif
}

.cd-tool-tile span {
    font-size: .74rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    line-height: 1.25
}

.cd-dash {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: var(--shadow-card)
}

.cd-dash-stat {
    background: var(--surface);
    border-radius: 16px;
    padding: 1.1rem 1.2rem
}

.cd-dash-stat .lab {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .3rem
}

.cd-dash-stat .val {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    color: var(--ink);
    line-height: 1
}

.cd-dash-stat .delta {
    font-size: .75rem;
    font-weight: 700;
    color: #16a34a
}

.cd-chart-area {
    height: 160px;
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    padding-top: 1rem
}

.cd-chart-area span {
    flex: 1;
    border-radius: 7px 7px 0 0;
    background: var(--gradient-brand);
    position: relative
}

.cd-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    transition: .3s
}

.cd-case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft)
}

.cd-case-tag {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    margin-bottom: 1.1rem
}

.cd-case-metric {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border)
}

.cd-case-metric:last-child {
    border-bottom: none
}

.cd-case-metric strong {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    color: var(--primary)
}

.cd-case-metric span {
    font-size: .85rem;
    color: var(--muted)
}

.cd-ba-strip {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card)
}

.cd-ba-half {
    flex: 1;
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem
}

.cd-ba-half.before {
    filter: grayscale(1) brightness(.85)
}

.cd-ba-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    padding: .3rem .75rem;
    border-radius: 999px;
    z-index: 2
}

.cd-ba-half.after .cd-ba-tag {
    background: var(--primary);
    color: #fff
}

.cd-ba-half::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,.55),transparent 50%)
}

.cd-ba-half span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: .85rem
}

.cd-ba-divider {
    width: 2px;
    background: #fff;
    flex-shrink: 0
}

.cd-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    background: rgba(10,22,40,.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: .75rem 0;
    transform: translateY(120%);
    transition: transform .35s ease
}

.cd-sticky-cta.show {
    transform: translateY(0)
}

.cd-sticky-cta p {
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    margin: 0
}

.cd-sticky-cta strong {
    color: #fff
}

.cd-eyebrow-light {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75)
}

@media(max-width: 991px) {
    .svc-grid-cd {
        grid-template-columns:repeat(2,1fr)
    }

    .svc-card-cd--wide {
        grid-column: span 2
    }

    .cmp-wrap {
        grid-template-columns: 1fr
    }

    .cd-tools-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .cd-process-track {
        grid-template-columns: repeat(4,1fr)
    }

    .cd-process-track::before {
        display: none
    }
}

@media(max-width: 575px) {
    .svc-grid-cd {
        grid-template-columns:1fr
    }

    .svc-card-cd--wide {
        grid-column: span 1
    }

    .cd-ba-strip {
        flex-direction: column
    }

    .cd-ba-half {
        aspect-ratio: 16/10
    }

    .cd-tools-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

/* ══ SEO / AEO Page ══ */
.aeo-dash {
    background: #0d1b3e;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px -20px rgba(7,116,255,.45);
    position: relative;
    overflow: hidden
}

.aeo-dash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 30% 0%,rgba(7,116,255,.25),transparent 70%);
    pointer-events: none
}

.aeo-dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.aeo-dash-head .dots {
    display: flex;
    gap: .4rem
}

.aeo-dash-title {
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em
}

.aeo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    position: relative;
    z-index: 1
}

.aeo-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: .9rem 1rem
}

.aeo-stat .lbl {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: .35rem
}

.aeo-stat .val {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.aeo-stat .delta {
    font-size: .74rem;
    font-weight: 700;
    margin-top: .3rem;
    display: inline-flex;
    align-items: center;
    gap: .2rem
}

.aeo-stat .delta.up {
    color: #34d399
}

.aeo-bars {
    display: flex;
    align-items: flex-end;
    gap: .3rem;
    height: 64px;
    margin-top: .6rem
}

.aeo-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient-brand)
}

.aeo-citelist {
    margin-top: .75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: .85rem 1rem;
    position: relative;
    z-index: 1
}

.aeo-cite-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.aeo-cite-row:last-child {
    border-bottom: 0
}

.aeo-cite-row .plat {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    color: rgba(255,255,255,.85);
    font-weight: 600
}

.aeo-cite-row .pic {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #fff;
    flex-shrink: 0
}

.aeo-cite-row .cnt {
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: .85rem
}

.aeo-float-badge {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: .65rem .95rem;
    box-shadow: 0 16px 40px -10px rgba(15,23,42,.3);
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 5
}

.aeo-stats-strip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.25rem 1.5rem;
    box-shadow: var(--shadow-card)
}

.aeo-stat-num {
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem 1.1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    height: 100%
}

.cert-badge .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.aeo-svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.aeo-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -18px rgba(7,116,255,.25);
    border-color: rgba(7,116,255,.25)
}

.aeo-svc-ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-soft)
}

.aeo-svc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.aeo-svc-card .svc-desc {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 1.1rem
}

.aeo-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem
}

.aeo-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .82rem;
    color: var(--ink);
    padding: .3rem 0
}

.aeo-feat-list li i {
    color: var(--primary);
    font-size: .85rem;
    margin-top: .2rem;
    flex-shrink: 0
}

.aeo-benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding-top: .9rem;
    border-top: 1px solid var(--border)
}

.aeo-benefit-pill {
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(7,116,255,.08);
    padding: .3rem .65rem;
    border-radius: 999px
}

.flow-track-wrap {
    background: #0a1628;
    border-radius: 28px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden
}

.flow-track-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%,rgba(7,116,255,.22),transparent 70%);
    pointer-events: none
}

.flow-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto
}

.flow-node {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: .85rem 1.5rem;
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    backdrop-filter: blur(8px)
}

.flow-node.hl {
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: 0 10px 30px -8px rgba(7,116,255,.6)
}

.flow-node .ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0
}

.flow-branch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    width: 100%
}

.flow-branch .flow-node {
    width: auto;
    flex: 1;
    min-width: 130px;
    font-size: .82rem;
    padding: .7rem 1rem
}

.plat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.4rem 1.1rem;
    text-align: center;
    height: 100%;
    transition: .25s
}

.plat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary)
}

.plat-ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto .85rem
}

.plat-card h6 {
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: .35rem
}

.plat-card p {
    font-size: .76rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5
}

.aeo-case {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.85rem;
    height: 100%;
    transition: .3s
}

.aeo-case:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft)
}

.aeo-case .tag {
    display: inline-block;
    padding: .3rem .8rem;
    border-radius: 999px;
    background: rgba(7,116,255,.1);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 1rem
}

.aeo-case .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border)
}

.aeo-case .metric:last-child {
    border-bottom: 0
}

.aeo-case .metric .v {
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem
}

.viz-dash {
    background: #0a1628;
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden
}

.viz-dash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%,rgba(7,116,255,.2),transparent 70%);
    pointer-events: none
}

.viz-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
    position: relative;
    z-index: 1
}

.viz-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(8px)
}

.viz-card .lbl {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.viz-card .val {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .4rem
}

.viz-card .bar-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    overflow: hidden
}

.viz-card .bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--gradient-brand)
}

.aeo-process-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1.1rem
}

.audit-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px -15px rgba(15,23,42,.1)
}

.score-demo {
    background: linear-gradient(160deg,#0d1b3e,#0a1628);
    border-radius: 22px;
    padding: 1.75rem;
    color: #fff;
    position: relative;
    overflow: hidden
}

.score-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 20%,rgba(7,116,255,.3),transparent 70%);
    pointer-events: none
}

.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 78%,rgba(255,255,255,.1) 78% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1
}

.score-ring-inner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #0d1b3e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.score-ring-inner .num {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.7rem;
    font-weight: 800
}

.score-ring-inner .lbl {
    font-size: .65rem;
    color: rgba(255,255,255,.5)
}

.sticky-audit-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: .85rem 0;
    transform: translateY(110%);
    transition: transform .35s ease;
    box-shadow: 0 -10px 40px rgba(0,0,0,.25)
}

.sticky-audit-bar.show {
    transform: translateY(0)
}

.sticky-audit-bar .txt {
    color: #fff;
    font-size: .85rem;
    font-weight: 600
}

.sticky-audit-bar .txt small {
    display: block;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    font-size: .72rem
}

@media(max-width: 991px) {
    .viz-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .aeo-process-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width: 575px) {
    .aeo-grid {
        grid-template-columns:1fr
    }

    .aeo-float-badge {
        display: none
    }

    .flow-branch .flow-node {
        min-width: 100%
    }

    .viz-grid {
        grid-template-columns: 1fr
    }

    .aeo-process-grid {
        grid-template-columns: 1fr
    }
}

/* ══ WhatsApp Automation Page ══ */
:root {
    --wa: #25d366;
    --wa-dark: #128c4a;
    --wa-soft: rgba(37,211,102,.12)
}

.wa-hero {
    position: relative;
    overflow: hidden;
    padding: 9.5rem 0 6rem;
    background: radial-gradient(ellipse at top left,rgba(37,211,102,.16),transparent 55%),radial-gradient(ellipse at bottom right,rgba(7,116,255,.16),transparent 55%)
}

.wa-hero .pill {
    background: rgba(255,255,255,.8)
}

.wa-hero .pill .dot {
    background: var(--wa)
}

.wa-highlight {
    background: linear-gradient(135deg,var(--wa),#0774ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.wa-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.4rem;
    margin-top: 1.5rem
}

.wa-trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink)
}

.wa-trust-item i {
    color: var(--wa);
    font-size: 1rem
}

.btn-wa {
    background: var(--wa);
    border-color: var(--wa);
    color: #fff
}

.btn-wa:hover {
    background: var(--wa-dark);
    border-color: var(--wa-dark);
    color: #fff;
    transform: translateY(-2px)
}

.wa-phone {
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    background: #0b0d12;
    border-radius: 38px;
    padding: .55rem;
    box-shadow: 0 30px 70px -20px rgba(15,23,42,.45)
}

.wa-phone-screen {
    background: #e9edf0;
    border-radius: 30px;
    overflow: hidden;
    min-height: 560px;
    position: relative;
    display: flex;
    flex-direction: column
}

.wa-phone-bar {
    background: var(--wa);
    color: #fff;
    padding: 1.6rem 1.1rem .9rem;
    display: flex;
    align-items: center;
    gap: .65rem
}

.wa-phone-bar .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem
}

.wa-phone-bar strong {
    display: block;
    font-size: .92rem;
    line-height: 1.2
}

.wa-phone-bar small {
    display: block;
    font-size: .7rem;
    opacity: .85
}

.wa-phone-body {
    flex: 1;
    padding: 1rem .85rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    overflow: hidden
}

.wa-bubble {
    max-width: 78%;
    padding: .55rem .8rem;
    border-radius: 14px;
    font-size: .8rem;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(15,23,42,.06)
}

.wa-bubble.in {
    background: #fff;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: #1a1a1a
}

.wa-bubble.out {
    background: #d9fdd3;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    color: #1a1a1a
}

.wa-dash-stats {
    padding: .9rem .85rem 1.1rem;
    background: #fff;
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .6rem
}

.wa-dash-stat {
    text-align: center
}

.wa-dash-stat strong {
    display: block;
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.1
}

.wa-dash-stat span {
    font-size: .62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em
}

.wa-float-card {
    position: absolute;
    padding: .7rem .95rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 3
}

.wa-float-1 {
    top: 8%;
    left: -12%
}

.wa-float-2 {
    bottom: 14%;
    right: -14%
}

.wa-stats-strip {
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden
}

.wa-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%,rgba(37,211,102,.25),transparent 45%);
    pointer-events: none
}

.wa-stat-num {
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1
}

.wa-stat-label {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    margin-top: .35rem
}

.wa-svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.wa-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -18px rgba(37,211,102,.28);
    border-color: rgba(37,211,102,.3)
}

.wa-svc-ic {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: linear-gradient(135deg,var(--wa),#1ea854);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.35rem;
    box-shadow: 0 12px 28px -8px rgba(37,211,102,.5)
}

.wa-svc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem
}

.wa-svc-card .wa-svc-desc {
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 1.1rem
}

.wa-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem
}

.wa-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .84rem;
    color: #374151;
    margin-bottom: .5rem
}

.wa-feat-list i {
    color: var(--wa);
    font-size: .85rem;
    margin-top: .2rem;
    flex-shrink: 0
}

.wa-benefit-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border)
}

.wa-benefit-pill {
    font-size: .72rem;
    font-weight: 700;
    padding: .28rem .7rem;
    border-radius: 999px;
    background: var(--wa-soft);
    color: var(--wa-dark)
}

.wa-funnel {
    position: relative;
    max-width: 620px;
    margin: 0 auto
}

.wa-funnel-step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.1rem 1.4rem;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
    transition: .25s
}

.wa-funnel-step:hover {
    border-color: var(--wa);
    box-shadow: 0 10px 30px -12px rgba(37,211,102,.25)
}

.wa-funnel-num {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg,var(--wa),#0774ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    flex-shrink: 0
}

.wa-funnel-step h6 {
    margin: 0 0 .15rem;
    font-weight: 700;
    font-size: .95rem
}

.wa-funnel-step p {
    margin: 0;
    font-size: .8rem;
    color: var(--muted)
}

.wa-funnel-arrow {
    display: flex;
    justify-content: center;
    color: var(--wa);
    font-size: 1.1rem;
    margin: -.15rem 0
}

.wa-funnel-metric {
    font-size: .72rem;
    font-weight: 700;
    color: var(--wa-dark);
    background: var(--wa-soft);
    padding: .25rem .6rem;
    border-radius: 999px;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0
}

.wa-usecase-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .3s
}

.wa-usecase-card:hover {
    border-color: var(--wa);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px)
}

.wa-usecase-ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem
}

.wa-compare {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.wa-compare-col {
    padding: 2rem 1.75rem
}

.wa-compare-col.bad {
    background: #fafafa
}

.wa-compare-col.good {
    background: linear-gradient(160deg,#effdf4,#fff);
    position: relative
}

.wa-compare-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.4rem;
    font-weight: 700;
    font-size: 1.05rem
}

.wa-compare-row {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .88rem;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--border)
}

.wa-compare-row:last-child {
    border-bottom: none
}

.wa-compare-row.bad i {
    color: #ef4444
}

.wa-compare-row.good i {
    color: var(--wa)
}

.wa-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.85rem;
    height: 100%;
    transition: .3s
}

.wa-case-card:hover {
    box-shadow: 0 20px 50px -16px rgba(15,23,42,.14);
    transform: translateY(-5px)
}

.wa-case-industry {
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: 999px;
    background: var(--wa-soft);
    color: var(--wa-dark);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 1rem
}

.wa-case-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .85rem;
    background: var(--surface);
    border-radius: 12px;
    margin-bottom: .55rem
}

.wa-case-metric strong {
    color: var(--wa-dark);
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.05rem
}

.wa-case-metric span {
    font-size: .8rem;
    color: var(--muted)
}

.wa-int-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 1rem
}

.wa-int-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.1rem .6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    transition: .25s;
    text-align: center
}

.wa-int-tile:hover {
    border-color: var(--wa);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -14px rgba(37,211,102,.3)
}

.wa-int-tile img {
    width: 32px;
    height: 32px;
    object-fit: contain
}

.wa-int-tile span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.2
}

.wa-flow-card {
    background: #0a1628;
    border-radius: 22px;
    padding: 2rem 1.75rem;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden
}

.wa-flow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(37,211,102,.18),transparent 70%);
    pointer-events: none
}

.wa-flow-card h5 {
    position: relative;
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: .55rem
}

.wa-flow-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .82rem;
    color: rgba(255,255,255,.85);
    padding: .6rem .85rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    margin-bottom: .45rem
}

.wa-flow-step .n {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(37,211,102,.2);
    color: var(--wa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0
}

.wa-flow-arrow-sm {
    text-align: center;
    color: rgba(37,211,102,.6);
    font-size: .85rem;
    margin: -.1rem 0
}

.wa-demo-section {
    background: #fff
}

.wa-demo-wrap {
    max-width: 380px;
    margin: 0 auto
}

.wa-demo-window {
    background: #e9edf0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px -16px rgba(15,23,42,.25);
    border: 1px solid var(--border)
}

.wa-demo-bar {
    background: var(--wa);
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #fff
}

.wa-demo-bar .av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center
}

.wa-demo-body {
    padding: 1.1rem .9rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    justify-content: flex-end
}

.wa-demo-typing {
    align-self: flex-start;
    background: #fff;
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: .6rem .9rem;
    display: flex;
    gap: .25rem;
    box-shadow: 0 2px 8px rgba(15,23,42,.06)
}

.wa-demo-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9ca3af;
    animation: waTyping 1.2s infinite
}

.wa-demo-typing span:nth-child(2) {
    animation-delay: .2s
}

.wa-demo-typing span:nth-child(3) {
    animation-delay: .4s
}

@keyframes waTyping {
    0%,60%,100% {
        opacity: .3;
        transform: translateY(0)
    }

    30% {
        opacity: 1;
        transform: translateY(-3px)
    }
}

.wa-demo-replay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem;
    border-top: 1px solid var(--border);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    color: var(--wa-dark);
    cursor: pointer;
    user-select: none
}

.wa-demo-replay:hover {
    background: var(--wa-soft)
}

.wa-form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-card);
    padding: 2.5rem
}

.wa-form-side {
    background: var(--gradient-cta);
    border-radius: 26px;
    padding: 2.5rem;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden
}

.wa-form-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 0%,rgba(37,211,102,.25),transparent 65%);
    pointer-events: none
}

.wa-form-side-pt {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.1rem;
    position: relative
}

.wa-form-side-pt i {
    color: var(--wa);
    font-size: 1.05rem;
    margin-top: .15rem
}

.wa-final-cta {
    background: var(--gradient-cta);
    border-radius: 30px;
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden
}

.wa-eyebrow-wa {
    background: var(--wa-soft)!important;
    color: var(--wa-dark)!important
}

.wa-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .75rem 1rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    z-index: 1035;
    box-shadow: 0 -8px 30px rgba(15,23,42,.08)
}

.wa-sticky-cta.show {
    display: flex
}

.wa-sticky-cta span {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink)
}

@media(max-width: 991px) {
    .wa-int-grid {
        grid-template-columns:repeat(3,1fr)
    }
}

@media(max-width: 767px) {
    .wa-hero {
        padding:7.5rem 0 3.5rem
    }

    .wa-phone {
        margin-top: 2.5rem
    }

    .wa-float-card {
        display: none
    }

    .wa-compare-col {
        padding: 1.5rem 1.25rem
    }

    .wa-form-wrap,.wa-form-side {
        padding: 1.75rem
    }

    .wa-final-cta {
        padding: 3rem 1.5rem
    }
}

@media(max-width: 575px) {
    .wa-int-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .wa-stat-num {
        font-size: 2rem
    }
}

/* ══ CRM / ERP / Ecommerce / Performance Marketing ══ */
.crm-dash {
    position: relative;
    background: linear-gradient(145deg,#0d1b3e,#0e1e42);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.5)
}

.crm-dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.crm-dash-head .dots {
    display: flex;
    gap: 6px
}

.dot-red {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f87171;
    display: inline-block
}

.dot-yellow {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fbbf24;
    display: inline-block
}

.dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    display: inline-block
}

.crm-dash-title {
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    font-weight: 600
}

.crm-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem
}

.crm-stat {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: .9rem 1rem
}

.crm-stat .lbl {
    font-size: .68rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .35rem
}

.crm-stat .val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk',sans-serif
}

.crm-stat .trend {
    font-size: .72rem;
    font-weight: 700;
    color: #34d399
}

.crm-pipe-bar {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1rem
}

.crm-pipe-bar .lbl {
    font-size: .72rem;
    color: rgba(255,255,255,.55);
    margin-bottom: .6rem;
    display: flex;
    justify-content: space-between
}

.crm-pipe-track {
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    display: flex
}

.crm-pipe-seg {
    height: 100%
}

.crm-pipe-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .7rem;
    font-size: .68rem;
    color: rgba(255,255,255,.55)
}

.crm-pipe-legend span {
    display: inline-flex;
    align-items: center;
    gap: .35rem
}

.crm-pipe-legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block
}

.crm-float-card {
    position: absolute;
    padding: .7rem .95rem;
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 16px 40px -10px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 3
}

.crm-float-ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0
}

.crm-float-card .t {
    font-size: .7rem;
    color: var(--muted);
    line-height: 1.2
}

.crm-float-card .v {
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2
}

.why-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .3s
}

.why-card:hover {
    box-shadow: 0 0 50px -10px rgba(7,116,255,.4)
}

.why-ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-soft)
}

.stat-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem;
    text-align: center
}

.stat-pill .num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .3s
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary)
}

.value-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.1rem
}

.industry-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: .3s;
    cursor: default;
    height: 100%
}

.industry-card i {
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: .6rem;
    transition: .3s
}

.industry-card:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-4px)
}

.industry-card:hover i {
    color: #ffc107
}

.testi-card {
    width: 380px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    white-space: normal
}

.testi-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.testi-card p {
    font-size: .93rem;
    color: #374151
}

.testi-card .stars i {
    color: #ffc107;
    font-size: .95rem
}

.testi-result-tag {
    display: inline-block;
    margin-top: .75rem;
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(7,116,255,.08);
    padding: .25rem .65rem;
    border-radius: 999px
}

.info-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.15rem;
    box-shadow: 0 2px 12px rgba(15,23,42,.05)
}

.info-card .ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 1rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.info-card small {
    font-size: .72rem
}

.info-card strong {
    font-size: .9rem
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(15,23,42,.06)
}

.cf-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .35rem;
    display: block;
    letter-spacing: .01em
}

.cf-input {
    border-radius: 10px!important;
    border: 1px solid var(--border)!important;
    padding: .55rem .9rem!important;
    font-size: .9rem!important;
    color: var(--ink);
    background: #fff;
    transition: .2s!important;
    box-shadow: none!important
}

.cf-input:focus {
    border-color: var(--primary)!important;
    box-shadow: 0 0 0 3px rgba(7,116,255,.1)!important;
    outline: none
}

.cf-input::placeholder {
    color: #adb5bd;
    font-size: .875rem
}

textarea.cf-input {
    resize: vertical;
    min-height: 100px
}

.cf-btn {
    padding: .6rem 2rem;
    font-size: .9rem;
    background: var(--gradient-brand);
    border: none;
    box-shadow: var(--shadow-soft);
    transition: .25s;
    color: #fff;
    border-radius: 12px;
    font-weight: 700
}

.cf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7,116,255,.35);
    color: #fff
}

.cta-box {
    background: var(--gradient-cta);
    border-radius: 28px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden
}

.blob-y {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,193,7,.35);
    filter: blur(80px);
    border-radius: 50%
}

.blob-w {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,.15);
    filter: blur(80px);
    border-radius: 50%
}

.ai-svc-section {
    background: #0a1628;
    position: relative;
    overflow: hidden
}

.ai-svc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%,rgba(7,116,255,.2),transparent 70%);
    pointer-events: none
}

.ai-splash {
    position: relative;
    background: linear-gradient(145deg,#0d1b3e,#0e1e42);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.splash-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle,rgba(7,116,255,.4),transparent 65%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: glowpulse 3.5s ease-in-out infinite;
    pointer-events: none
}

.splash-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none
}

.splash-ring-1 {
    width: 210px;
    height: 210px;
    border: 1px dashed rgba(7,116,255,.25);
    animation: ringspin 22s linear infinite
}

.splash-ring-2 {
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(7,116,255,.12);
    animation: ringspin 32s linear infinite reverse
}

.splash-orb {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #fff;
    box-shadow: 0 0 40px rgba(7,116,255,.8),0 0 90px rgba(7,116,255,.35);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2
}

.splash-float {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    animation: floatbob 3.5s ease-in-out infinite;
    z-index: 2
}

.splash-float:nth-child(2) {
    animation-delay: 0s
}

.splash-float:nth-child(3) {
    animation-delay: -1.2s
}

.splash-float:nth-child(4) {
    animation-delay: -2.4s
}

.splash-float:nth-child(5) {
    animation-delay: -.8s
}

.splash-center {
    position: relative;
    z-index: 2
}

.splash-center h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .5rem;
    line-height: 1.3
}

.splash-center p {
    color: rgba(255,255,255,.5);
    font-size: .875rem
}

.splash-stat {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: .45rem 1rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    z-index: 3;
    white-space: nowrap
}

.splash-stat span {
    font-size: .77rem;
    color: rgba(255,255,255,.8)
}

.splash-stat strong {
    color: #fff
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: sdotpulse 2s ease-in-out infinite
}

.sdot-green {
    background: #10b981
}

.sdot-blue {
    background: #0774ff
}

.ai-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 1.35rem;
    text-decoration: none;
    display: block;
    color: #fff;
    transition: .25s
}

.ai-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(7,116,255,.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(7,116,255,.2);
    color: #fff
}

.ai-card-ic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.3)
}

.ai-card strong {
    font-size: .9rem;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    margin-bottom: .35rem;
    color: #fff
}

.ai-card p {
    font-size: .775rem;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
    margin: 0
}

@keyframes glowpulse {
    0%,100% {
        opacity: .6;
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1.2)
    }
}

@keyframes ringspin {
    to {
        transform: translate(-50%,-50%) rotate(360deg)
    }
}

@keyframes floatbob {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes sdotpulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.dashboard-mock {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.5)
}

.dm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.dm-dots {
    display: flex;
    gap: 6px
}

.dm-label {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase
}

.dm-product-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06)
}

.dm-product-row:last-child {
    border-bottom: none
}

.dm-product-ic {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #fff;
    flex-shrink: 0
}

.dm-product-row .pname {
    font-size: .78rem;
    color: rgba(255,255,255,.85);
    font-weight: 600
}

.dm-product-row .psales {
    font-size: .68rem;
    color: rgba(255,255,255,.45)
}

.dm-product-row .pval {
    margin-left: auto;
    font-size: .8rem;
    font-weight: 700;
    color: #fff
}

.funnel-section {
    background: #0a1628;
    color: #fff;
    position: relative;
    overflow: hidden
}

.funnel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(7,116,255,.18),transparent 70%);
    pointer-events: none
}

.funnel-section .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75)
}

.funnel-section .text-muted {
    color: rgba(255,255,255,.5)!important
}

.funnel-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 560px;
    margin: 0 auto
}

.funnel-track .funnel-step {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: .3s;
    backdrop-filter: blur(8px)
}

.funnel-track .funnel-step:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(7,116,255,.5);
    transform: translateX(4px)
}

.funnel-body strong {
    display: block;
    font-size: .95rem;
    margin-bottom: .15rem
}

.funnel-body span {
    font-size: .8rem;
    color: rgba(255,255,255,.5)
}

.funnel-metric-val {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0
}

.funnel-metric-val strong {
    display: block;
    font-family: 'Space Grotesk';
    font-size: 1.1rem;
    color: #4f9dff
}

.funnel-metric-val small {
    font-size: .68rem;
    color: rgba(255,255,255,.4)
}

.funnel-sources {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.funnel-source-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.8)
}

.analytics-mock {
    background: #0d1b3e;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 1.75rem;
    color: #fff
}

.analytics-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .85rem
}

.analytics-row:last-child {
    border-bottom: none
}

.analytics-row i {
    color: #4f9dff;
    margin-right: .6rem
}

.analytics-badge {
    font-size: .68rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 999px;
    background: rgba(52,211,153,.15);
    color: #34d399
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.25rem;
    position: relative;
    align-items: start
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: .4rem;
    height: 110px
}

.chart-bars span {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: var(--gradient-brand)
}

.ba-row {
    display: flex;
    justify-content: space-between;
    padding: .6rem .8rem;
    border-radius: 10px;
    background: var(--surface);
    font-size: .9rem;
    margin-top: .5rem
}

.ba-row.after {
    background: rgba(7,116,255,.1);
    color: var(--primary)
}

.ba-row.after strong {
    color: var(--primary)
}

.case-industry-tag {
    display: inline-block;
    padding: .3rem .8rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

.float-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(15,23,42,.08);
    padding: .75rem 1rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: .6rem
}

.float-sticky-cta.show {
    display: flex
}

@media(max-width: 767px) {
    .float-sticky-cta {
        display:flex;
        body {
            padding-bottom: 64px
        }
    }
}

/* ══ ERP Software Page ══ */
.svc-badge-hot {
    display: inline-block;
    padding: .1rem .45rem;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    margin-left: .35rem;
    vertical-align: middle;
    background: rgba(239,68,68,.1);
    color: #ef4444
}

.svc-badge-new {
    display: inline-block;
    padding: .1rem .45rem;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    margin-left: .35rem;
    vertical-align: middle;
    background: rgba(7,116,255,.1);
    color: var(--primary)
}

.web-bento {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.25rem
}

.wb-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.6rem;
    transition: .28s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: var(--ink)
}

.wb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -16px rgba(15,23,42,.15);
    border-color: transparent;
    color: var(--ink)
}

.wb-card--feat {
    background: linear-gradient(145deg,#faf7ff,#fff);
    border-color: rgba(124,58,237,.18)
}

.wb-card--feat:hover {
    box-shadow: 0 20px 50px -16px rgba(124,58,237,.22)
}

.wb-card--wide {
    background: linear-gradient(145deg,#f0f7ff,#fff);
    border-color: rgba(7,116,255,.15)
}

.wb-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
    margin-bottom: 1.1rem
}

.wb-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: .9rem 0 .4rem;
    color: var(--ink)
}

.wb-card p {
    font-size: .825rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0
}

.wb-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: .85rem
}

.wb-link i {
    transition: translate .2s
}

.wb-card:hover .wb-link i {
    translate: 4px 0
}

.wb-corner-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: .25rem .7rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    background: rgba(124,58,237,.1);
    color: #7c3aed
}

.stack-section {
    background: var(--ink);
    position: relative;
    overflow: hidden
}

.stack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%,rgba(7,116,255,.14),transparent 70%);
    pointer-events: none
}

.stack-section .eyebrow {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7)
}

.stack-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 2.5rem
}

.stab {
    padding: .5rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    letter-spacing: .02em
}

.stab:hover {
    border-color: rgba(7,116,255,.5);
    color: #fff;
    background: rgba(7,116,255,.15)
}

.stab.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(7,116,255,.45)
}

.stack-panel {
    display: none
}

.stack-panel.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadePanel .3s ease
}

@keyframes fadePanel {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.tech-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    padding: 1.25rem .75rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: .25s;
    cursor: default;
    text-align: center;
    width: 110px;
    flex-shrink: 0
}

.tech-tile:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-3px)
}

.tech-tile img,.tech-tile svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3))
}

.tech-tile span {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    line-height: 1.2
}

.filter-btn {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 600;
    font-size: .88rem;
    transition: .2s
}

.filter-btn:hover {
    border-color: var(--primary)
}

.filter-btn.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.portfolio-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s
}

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

.portfolio-thumb {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden
}

.portfolio-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,rgba(255,255,255,.35),transparent 50%)
}

.portfolio-thumb .cat {
    position: absolute;
    bottom: 14px;
    left: 16px;
    color: #fff;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 1
}

.portfolio-card .body {
    padding: 1.1rem 1.25rem 1.25rem
}

.portfolio-card .result {
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    margin: 0
}

.grad-seo {
    background: linear-gradient(135deg,#3b82f6,#06b6d4)
}

.grad-ecom {
    background: linear-gradient(135deg,#ec4899,#f43f5e)
}

.grad-crm {
    background: linear-gradient(135deg,#f59e0b,#f97316)
}

.grad-erp {
    background: linear-gradient(135deg,#10b981,#14b8a6)
}

.grad-ai {
    background: linear-gradient(135deg,#8b5cf6,#6366f1)
}

.grad-web {
    background: linear-gradient(135deg,#0ea5e9,#2563eb)
}

.grad-1 {
    background: linear-gradient(135deg,#3b82f6,#06b6d4)
}

.grad-2 {
    background: linear-gradient(135deg,#8b5cf6,#d946ef)
}

.grad-3 {
    background: linear-gradient(135deg,#f59e0b,#f97316)
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    height: 100%
}

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

.blog-thumb {
    aspect-ratio: 16/9;
    position: relative
}

.blog-thumb .tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700
}

.stats-section {
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(255,255,255,.15),transparent 40%)
}

.p-tag {
    display: inline-block;
    padding: .3rem .85rem;
    border-radius: 999px;
    background: rgba(7,116,255,.18);
    border: 1px solid rgba(7,116,255,.4);
    color: rgba(79,157,255,1);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em
}

.captcha-flat {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap
}

.captcha-flat-refresh {
    width: 38px;
    height: 38px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    background: #fff;
    color: #374151;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color .2s,border-color .2s,transform .35s;
    text-decoration: none;
    padding: 0;
    line-height: 1
}

.captcha-flat-refresh:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(180deg)
}

.captcha-flat-code {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .28em;
    color: var(--ink);
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: .42rem 1.4rem;
    min-width: 110px;
    text-align: center;
    user-select: none;
    font-family: 'Space Grotesk',monospace;
    background: #fafafa;
    flex-shrink: 0
}

.captcha-flat-input {
    flex: 1;
    min-width: 130px;
    border: 1.5px solid #d1d5db!important;
    border-radius: 999px!important;
    padding: .42rem 1.25rem!important;
    font-size: .9rem!important;
    color: var(--ink);
    background: #fff;
    outline: none;
    box-shadow: none!important;
    transition: border-color .2s!important
}

.captcha-flat-input:focus {
    border-color: var(--primary)!important;
    box-shadow: 0 0 0 3px rgba(7,116,255,.08)!important
}

.captcha-flat-input::placeholder {
    color: #9ca3af;
    font-size: .875rem
}

.map-wrap {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    height: 180px
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0
}

@media(max-width: 991px) {
    .web-bento {
        grid-template-columns:repeat(2,1fr)
    }

    .process-track {
        grid-template-columns: repeat(2,1fr)
    }
}

@media(max-width: 575px) {
    .web-bento {
        grid-template-columns:1fr
    }

    .process-track {
        grid-template-columns: 1fr
    }
}

/* ══ Services (Main) Page ══ */
.svc-hero {
    background: #0a1628;
    position: relative;
    overflow: hidden;
    padding: 9.5rem 0 6rem
}

.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 60% at 20% 10%,rgba(7,116,255,.28),transparent 65%),radial-gradient(ellipse 60% 50% at 90% 90%,rgba(255,193,7,.14),transparent 60%);
    pointer-events: none
}

.svc-hero h1 {
    color: #fff
}

.svc-hero .lead {
    color: rgba(255,255,255,.62)
}

.svc-hero .pill {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
    color: rgba(255,255,255,.85)
}

.svc-dash {
    position: relative;
    background: linear-gradient(150deg,#0d1b3e,#0e1e42);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.5)
}

.svc-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.svc-dash-dots {
    display: flex;
    gap: 6px
}

.svc-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem
}

.svc-dash-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1rem
}

.svc-dash-card .lbl {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    margin-bottom: .35rem
}

.svc-dash-card .val {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    color: #fff
}

.svc-float {
    position: absolute;
    padding: .7rem .95rem;
    border-radius: 14px;
    background: rgba(13,27,62,.92);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: .6rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    z-index: 3
}

.svc-float .ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    flex-shrink: 0;
    margin: 0
}

.svc-float small {
    display: block;
    font-size: .68rem;
    color: rgba(255,255,255,.5)
}

.svc-float strong {
    font-size: .85rem;
    color: #fff
}

.svc-float--1 {
    top: -18px;
    left: -24px
}

.svc-float--2 {
    bottom: -16px;
    right: -20px
}

.cat-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.85rem;
    height: 100%;
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    display: block
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: var(--gradient-brand);
    -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: .3s
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -18px rgba(7,116,255,.28);
    color: var(--ink)
}

.cat-card:hover::before {
    opacity: 1
}

.cat-ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-soft)
}

.cat-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.cat-card p {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

.cat-count {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em
}

.svc-card-ic {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-soft)
}

.svc-card .desc {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 1rem
}

.svc-card .benefit {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(7,116,255,.07);
    border-radius: 10px;
    padding: .6rem .85rem;
    margin-bottom: 1.15rem;
    line-height: 1.5
}

.svc-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1
}

.svc-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .85rem;
    color: var(--ink);
    margin-bottom: .6rem;
    line-height: 1.4
}

.svc-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .65rem 1.1rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    transition: .2s;
    margin-top: auto
}

.svc-card-cta:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.svc-card--dark {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    color: #fff
}

.svc-card--dark:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(7,116,255,.45)
}

.svc-card--dark .desc {
    color: rgba(255,255,255,.55)
}

.svc-card--dark h3 {
    color: #fff
}

.svc-card--dark .benefit {
    background: rgba(7,116,255,.18);
    color: #9cc4ff
}

.svc-card--dark .svc-feat-list li {
    color: rgba(255,255,255,.85)
}

.svc-card--dark .svc-card-cta {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
    color: #fff
}

.svc-card--dark .svc-card-cta:hover {
    background: var(--gradient-brand);
    border-color: transparent
}

.growth-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem
}

.growth-widget .gw-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem
}

.growth-bars {
    display: flex;
    align-items: flex-end;
    gap: .55rem;
    height: 120px
}

.growth-bars span {
    flex: 1;
    border-radius: 7px 7px 0 0;
    background: var(--gradient-brand);
    position: relative
}

.gw-stat {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 0;
    border-top: 1px solid var(--border)
}

.gw-stat .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
    margin: 0
}

.ent-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.25rem
}

.ent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .85rem
}

.ent-row:last-child {
    border-bottom: none
}

.ent-tag {
    padding: .15rem .55rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700
}

.process-track--six {
    grid-template-columns: repeat(6,1fr)
}

.process-track--six::before {
    left: calc(8.33% + .75rem);
    right: calc(8.33% + .75rem)
}

.process-track--six .p-card {
    padding: 1.75rem 1.1rem 1.5rem
}

.process-track--six .p-ghost {
    font-size: 3.75rem;
    right: 6px
}

.process-track--six .p-badge {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    margin-bottom: 1rem
}

.cat-jump {
    position: sticky;
    top: 90px;
    z-index: 60;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: .6rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: var(--shadow-card)
}

.cat-jump a {
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: .2s;
    white-space: nowrap
}

.cat-jump a:hover,.cat-jump a.active {
    background: var(--ink);
    color: #fff
}

@media(max-width: 991px) {
    .svc-dash {
        margin-top:3rem
    }

    .svc-float {
        display: none
    }
}

@media(max-width: 767px) {
    .svc-hero {
        padding:8rem 0 3.5rem;
        text-align: center
    }
}

@media(max-width: 1199px) {
    .process-track--six {
        grid-template-columns:repeat(3,1fr)
    }

    .process-track--six::before {
        display: none
    }
}

@media(max-width: 575px) {
    .process-track--six {
        grid-template-columns:1fr
    }
}

/* ══ ERP Software Page — Specific ══ */
/* Hero dashboard */
.erp-dash {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    overflow: hidden
}

.erp-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.15rem;
    border-bottom: 1px solid var(--border)
}

.erp-dash-body {
    padding: 1.15rem
}

.erp-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: .75rem;
    margin-bottom: .9rem
}

.erp-kpi {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem .95rem
}

.erp-kpi .lbl {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .3rem
}

.erp-kpi .val {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    color: var(--ink);
    line-height: 1
}

.erp-kpi .delta {
    font-size: .72rem;
    font-weight: 700;
    margin-top: .2rem
}

.erp-kpi .delta.up {
    color: #16a34a
}

.erp-kpi .delta.down {
    color: #ef4444
}

.erp-chart-row {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: .75rem
}

.erp-chart-row .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .7rem
}

.erp-bars {
    display: flex;
    align-items: flex-end;
    gap: .35rem;
    height: 64px
}

.erp-bars span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient-brand)
}

.erp-mod-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.erp-mod-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .6rem .75rem
}

.erp-mod-row .ic {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: .8rem;
    flex-shrink: 0;
    margin: 0
}

.erp-mod-row .nm {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    flex: 1
}

.erp-mod-row .pct {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary)
}

.erp-float-card {
    position: absolute;
    padding: .75rem .95rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 3
}

.erp-float-card .ic {
    margin-bottom: 0
}

/* ERP Modules (Section 3) */
.mod-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.mod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -18px rgba(15,23,42,.16);
    border-color: transparent
}

.mod-num {
    position: absolute;
    top: -8px;
    right: 14px;
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Space Grotesk',sans-serif;
    color: var(--ink);
    opacity: .04;
    line-height: 1;
    user-select: none;
    pointer-events: none
}

.mod-ic {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-soft)
}

.mod-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .6rem;
    position: relative;
    z-index: 1
}

.mod-feat {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
    position: relative;
    z-index: 1
}

.mod-feat li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .85rem;
    color: var(--muted);
    padding: .3rem 0;
    line-height: 1.5
}

.mod-feat li i {
    color: var(--primary);
    font-size: .85rem;
    margin-top: .25rem;
    flex-shrink: 0
}

.mod-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    position: relative;
    z-index: 1
}

.mod-benefit-tag {
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: rgba(7,116,255,.08);
    color: var(--primary)
}

/* ERP Data Flow (Section 4) */
.erp-flow-wrap {
    background: #0a1628;
    border-radius: 28px;
    padding: 3.5rem 2rem;
    position: relative;
    overflow: hidden
}

.erp-flow-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(7,116,255,.22),transparent 70%);
    pointer-events: none
}

.erp-flow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.erp-flow-node {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 1.1rem 1.3rem;
    text-align: center;
    min-width: 130px;
    backdrop-filter: blur(8px);
    transition: .25s
}

.erp-flow-node:hover {
    background: rgba(7,116,255,.12);
    border-color: rgba(7,116,255,.4);
    transform: translateY(-4px)
}

.erp-flow-node .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto .6rem;
    box-shadow: 0 8px 20px -6px rgba(7,116,255,.6)
}

.erp-flow-node strong {
    display: block;
    font-size: .82rem;
    color: #fff;
    font-weight: 700
}

.erp-flow-node.core {
    background: rgba(7,116,255,.16);
    border-color: rgba(7,116,255,.5)
}

.erp-flow-node.core .ic {
    background: #fff;
    color: var(--primary)
}

.erp-flow-arrow {
    color: rgba(255,255,255,.3);
    font-size: 1.3rem;
    padding: 0 .9rem;
    flex-shrink: 0
}

/* ERP Industries (Section 5) */
.erp-ind-ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft)
}

/* ERP Comparison (Section 6) */
.cmp-col {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 2rem;
    height: 100%
}

.cmp-col.cmp-bad {
    background: var(--surface)
}

.cmp-col.cmp-good {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-soft);
    background: linear-gradient(160deg,#f0f7ff,#fff)
}

.cmp-head {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: 1.4rem
}

.cmp-head .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0
}

.cmp-row {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .55rem 0;
    font-size: .92rem
}

.cmp-row i {
    margin-top: .2rem;
    flex-shrink: 0
}

.cmp-bad .cmp-row i {
    color: #ef4444
}

.cmp-good .cmp-row i {
    color: #16a34a
}

/* ERP Case Studies (Section 7) */
.erp-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: .3s
}

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

.erp-case-top {
    padding: 1.75rem;
    color: #fff;
    position: relative;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.erp-case-top .industry-tag {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .8;
    margin-bottom: .4rem
}

.erp-case-metrics {
    padding: 1.5rem 1.75rem 1.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: .7rem
}

.erp-case-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--surface);
    border-radius: 12px;
    padding: .65rem .9rem
}

.erp-case-metric .v {
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    font-size: 1.1rem;
    color: var(--primary)
}

.erp-case-metric .l {
    font-size: .78rem;
    color: var(--muted)
}

/* ERP Integrations (Section 8) */
.int-grid {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    gap: 1rem
}

.int-tile {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem .6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: .25s;
    text-align: center
}

.int-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary)
}

.int-tile span {
    font-size: .68rem;
    font-weight: 700;
    color: var(--muted)
}

.int-tile-ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif
}

/* ERP BI Dashboard (Section 9) */
.bi-wrap {
    background: #0a1628;
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden
}

.bi-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 0%,rgba(7,116,255,.2),transparent 70%);
    pointer-events: none
}

.bi-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 1.25rem;
    height: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px)
}

.bi-card .hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .9rem
}

.bi-card .hd span {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .06em
}

.big-num {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Space Grotesk',sans-serif;
    color: #fff;
    line-height: 1
}

.bi-bars {
    display: flex;
    align-items: flex-end;
    gap: .3rem;
    height: 70px;
    margin-top: .6rem
}

.bi-bars span {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--gradient-brand)
}

.bi-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) 0% 78%,rgba(255,255,255,.1) 78% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: .5rem auto
}

.bi-ring-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0a1628;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Space Grotesk',sans-serif
}

/* ERP Implementation Timeline (Section 10) */
.tl-wrap {
    position: relative;
    max-width: 880px;
    margin: 0 auto
}

.tl-wrap::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg,rgba(7,116,255,.5),rgba(7,116,255,.1));
    z-index: 0
}

.tl-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding-bottom: 1.75rem
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: 'Space Grotesk',sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px -6px rgba(7,116,255,.3)
}

.tl-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    flex: 1;
    transition: .25s
}

.tl-body:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px -10px rgba(7,116,255,.25)
}

.tl-body h5 {
    font-size: .98rem;
    font-weight: 700;
    margin: 0 0 .25rem
}

.tl-body p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0
}

/* ERP Lead Form & Final CTA */
.lead-form-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-card);
    padding: 2.5rem
}

.final-cta {
    background: var(--gradient-cta);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 0%,rgba(7,116,255,.35),transparent 70%);
    pointer-events: none
}

.final-cta h2,.final-cta p,.final-cta .cta-actions {
    position: relative;
    z-index: 1
}

/* ERP Sticky CTA bar */
.float-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(15,23,42,.1);
    padding: .7rem 1rem;
    z-index: 1035;
    display: none;
    gap: .6rem
}

.float-sticky-cta.show {
    display: flex
}

@media(max-width: 767px) {
    .float-sticky-cta {
        display:flex
    }
}

@media(max-width: 991px) {
    .erp-flow-arrow {
        transform:rotate(90deg);
        padding: .5rem 0
    }

    .int-grid {
        grid-template-columns: repeat(4,1fr)
    }
}

@media(max-width: 767px) {
    .erp-kpi-grid {
        grid-template-columns:repeat(2,1fr)
    }

    .tl-wrap::before {
        left: 23px
    }

    .tl-num {
        width: 46px;
        height: 46px;
        font-size: .92rem;
        border-radius: 13px
    }
}

@media(max-width: 575px) {
    .int-grid {
        grid-template-columns:repeat(3,1fr)
    }
}
