/* =====================================================
   AvancerApp Global Styles - 2026 Design
   ===================================================== */

:root {
    --navy: #0F172A;
    --blue: #2563EB;
    --cyan: #06B6D4;
    --light-bg: #F8FAFC;
    --white: #ffffff;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --card-bg: #ffffff;
    --gradient: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
    --blue-gradient: linear-gradient(135deg, #2563EB, #06B6D4);
    --font: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 56px;
}

.text-center {
    text-align: center;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
    border: none;
}

.btn-primary {
    background: var(--blue-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 99, 235, .35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, .45);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-dark {
    background: var(--navy);
    color: white;
}

.btn-dark:hover {
    background: var(--blue);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.navbar-brand .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: white;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-nav a {
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all .2s;
}

.navbar-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, .08);
}

.navbar-cta {
    background: var(--blue-gradient);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.navbar-cta:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.navbar-nav a.active-nav {
    color: white;
    background: rgba(37, 99, 235, .25);
    border-radius: 6px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37, 99, 235, .25) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 30% 80%, rgba(6, 182, 212, .12) 0%, transparent 60%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, .2);
    border: 1px solid rgba(37, 99, 235, .4);
    color: #93C5FD;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: .5px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    outline: none;
}

.hero-title .highlight {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 500;
}

.hero-stat .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

/* Dashboard Mockup — hero-visual container */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 500px;
    padding-left: 20px;
    overflow: visible;
}

/* ── LAPTOP DEVICE ── */
.hero-laptop {
    position: relative;
    z-index: 3;
    width: 490px;
    animation: floatUp 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 70px rgba(0, 0, 0, .6));
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0) perspective(1000px) rotateY(-2deg);
    }

    50% {
        transform: translateY(-14px) perspective(1000px) rotateY(-1deg);
    }
}

.laptop-lid {
    background: linear-gradient(160deg, #1c2235 0%, #121827 100%);
    border-radius: 14px 14px 4px 4px;
    border: 2px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 10px 10px 6px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 -10px 40px rgba(37, 99, 235, .12);
}

.laptop-camera-row {
    display: flex;
    justify-content: center;
    margin-bottom: 7px;
}

.laptop-camera {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #263050;
    border: 1px solid rgba(255, 255, 255, .15);
}

.laptop-screen-inner {
    border-radius: 6px;
    overflow: hidden;
    background: #090d1a;
}

.laptop-hinge {
    height: 5px;
    background: linear-gradient(to right, #0c1020, #1c2235, #0c1020);
    border-left: 2px solid rgba(255, 255, 255, .07);
    border-right: 2px solid rgba(255, 255, 255, .07);
}

.laptop-base {
    background: linear-gradient(160deg, #191e30 0%, #101520 100%);
    border-radius: 4px 4px 14px 14px;
    border: 2px solid rgba(255, 255, 255, .1);
    border-top: none;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.laptop-trackpad {
    width: 66px;
    height: 11px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
}

/* ── MINI DASHBOARD INSIDE LAPTOP ── */
.mini-dash {
    display: flex;
    height: 270px;
    background: #0D1526;
}

.mini-sidebar {
    width: 84px;
    background: #080f1e;
    border-right: 1px solid rgba(255, 255, 255, .06);
    padding: 10px 6px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mini-brand {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px 8px;
    color: white;
    font-weight: 700;
    font-size: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
}

.mini-logo-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
}

.mini-nav {
    padding: 5px 7px;
    border-radius: 5px;
    color: rgba(255, 255, 255, .38);
    font-size: 7.5px;
    white-space: nowrap;
}

.mini-nav.active {
    background: rgba(37, 99, 235, .28);
    color: #93C5FD;
    font-weight: 700;
}

.mini-content {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    overflow: hidden;
}

.mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-title {
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.mini-header-dots {
    display: flex;
    gap: 4px;
}

.mini-header-dots span {
    width: 16px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .12);
}

.mini-header-dots span:first-child {
    background: rgba(37, 99, 235, .5);
    width: 22px;
}

.mini-kpis {
    display: flex;
    gap: 7px;
}

.mini-kpi {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 7px;
    padding: 7px 9px;
    flex: 1;
}

.mini-kpi-val {
    font-size: 12px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.mini-kpi-lbl {
    font-size: 6.5px;
    color: rgba(255, 255, 255, .38);
    margin: 2px 0 1px;
}

.mini-kpi-chg {
    font-size: 7px;
    color: #10B981;
    font-weight: 700;
}

.mini-charts {
    display: flex;
    gap: 8px;
    align-items: stretch;
    flex: 1;
}

.mini-line-area {
    flex: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 7px;
    overflow: hidden;
    padding: 6px 4px 0;
}

.mini-donut-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.mini-row-metrics {
    display: flex;
    gap: 6px;
}

.mini-row-box {
    flex: 1;
    height: 16px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
}

/* ── FLOATING UPTIME BADGE ── */
.hero-uptime-badge {
    position: absolute;
    bottom: -22px;
    left: 14px;
    background: rgba(16, 185, 129, .15);
    border: 1px solid rgba(16, 185, 129, .4);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    z-index: 10;
    animation: floatCard 5s 1s ease-in-out infinite;
}

.hero-uptime-badge .uptime-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    flex-shrink: 0;
}

.uptime-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .55);
}

.uptime-val {
    font-size: 18px;
    font-weight: 800;
    color: #10B981;
    line-height: 1.1;
}

.uptime-period {
    font-size: 8px;
    color: rgba(255, 255, 255, .35);
}

/* ── MOBILE PHONE DEVICE ── */
.hero-mobile {
    position: absolute;
    right: -28px;
    top: -30px;
    z-index: 5;
    width: 122px;
    background: #0e1424;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, .2);
    box-shadow:
        0 0 0 5px rgba(255, 255, 255, .04),
        0 24px 70px rgba(0, 0, 0, .75),
        inset 0 1px 0 rgba(255, 255, 255, .1);
    overflow: hidden;
    animation: floatPhone 5s .5s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: rotate(1.5deg) translateY(0);
    }

    50% {
        transform: rotate(0deg) translateY(-12px);
    }
}

.mobile-notch {
    height: 18px;
    background: #080d18;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-notch::after {
    content: '';
    width: 40px;
    height: 6px;
    background: #1a2035;
    border-radius: 4px;
}

.mobile-screen {
    background: #0D1526;
    overflow: hidden;
}

.mobile-screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px 4px;
}

.mobile-app-name {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .4px;
}

.mobile-dots {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: 1px;
}

.mobile-gauge-wrap {
    width: 84px;
    height: 84px;
    margin: 4px auto 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-gauge-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile-gauge-center {
    text-align: center;
}

.mobile-gauge-value {
    font-size: 18px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.mobile-gauge-label {
    font-size: 8px;
    color: rgba(255, 255, 255, .45);
    margin-top: 1px;
}

.mobile-bar-rows {
    padding: 4px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-bar-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-bar-row span {
    font-size: 7px;
    color: rgba(255, 255, 255, .38);
}

.mobile-bar-fill {
    height: 4px;
    border-radius: 2px;
}

.mobile-home-indicator {
    height: 18px;
    background: #080d18;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-home-indicator::after {
    content: '';
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, .18);
    border-radius: 2px;
}

/* ── DECORATIVE FLOATING DIAMONDS ── */
.hero-deco {
    position: absolute;
    transform: rotate(45deg);
    border-radius: 5px;
    pointer-events: none;
    z-index: 1;
}

.hd-1 {
    width: 16px;
    height: 16px;
    top: 30px;
    right: 14px;
    background: rgba(99, 102, 241, .18);
    border: 1.5px solid rgba(99, 102, 241, .55);
    animation: demoDance 4s ease-in-out infinite;
}

.hd-2 {
    width: 11px;
    height: 11px;
    top: -8px;
    left: 80px;
    background: rgba(6, 182, 212, .18);
    border: 1.5px solid rgba(6, 182, 212, .55);
    animation: demoDance 4s 1.2s ease-in-out infinite;
}

.hd-3 {
    width: 20px;
    height: 20px;
    bottom: 50px;
    right: 0px;
    background: rgba(139, 92, 246, .18);
    border: 1.5px solid rgba(139, 92, 246, .55);
    animation: demoDance 5s 2s ease-in-out infinite;
}

@keyframes demoDance {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
        opacity: .7;
    }

    50% {
        transform: rotate(45deg) translateY(-9px);
        opacity: 1;
    }
}

/* Hero Floating Cards */
.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
    z-index: 10;
}

.hero-float-card.ai-card {
    top: -30px;
    left: 8px;
    min-width: 210px;
    animation: floatCard 4s ease-in-out infinite;
}

.float-card-icon {
    font-size: 18px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #EDE9FE, #DDD6FE);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-content {
    flex: 1;
}

.float-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2px;
}

.float-card-sub {
    font-size: 10px;
    color: #64748B;
    line-height: 1.4;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(-1.5deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }
}

/* Why Choose Us Orb element */
.why-orb {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 38%,
            rgba(192, 132, 252, .75) 0%,
            rgba(139, 92, 246, .5) 18%,
            rgba(99, 102, 241, .3) 38%,
            rgba(37, 99, 235, .1) 58%,
            transparent 72%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: .85;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.06);
    }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
    flex-shrink: 0;
    min-width: 120px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    flex: 1;
}

.trust-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s;
    white-space: nowrap;
}

.trust-logo:hover {
    color: var(--blue);
}

.trust-logo .logo-icon-sm {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #F1F5F9;
}

.trust-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-we-do {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-gradient);
    opacity: 0;
    transition: opacity .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, .12);
    border-color: rgba(37, 99, 235, .2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(37, 99, 235, .1), rgba(6, 182, 212, .1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.service-link:hover {
    gap: 10px;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries {
    padding: 100px 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all .3s;
    cursor: pointer;
}

.industry-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, .15);
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, .1);
    filter: brightness(5);
}

.industry-card:hover .industry-name {
    color: white;
}

.industry-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all .3s;
}

.industry-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    transition: color .3s;
}

/* ============================================================
   FEATURED SOLUTIONS
   ============================================================ */
.solutions {
    padding: 100px 0;
    background: var(--light-bg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .3s;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}

.solution-img {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.solution-card:hover .solution-img img {
    transform: scale(1.06);
}

.solution-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, .55));
    pointer-events: none;
    z-index: 1;
}

.solution-body {
    padding: 20px;
}

.solution-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.solution-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.solution-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.solution-link:hover {
    gap: 10px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
            rgba(139, 92, 246, .55) 0%,
            rgba(99, 102, 241, .35) 28%,
            rgba(37, 99, 235, .2) 50%,
            transparent 68%);
    filter: blur(18px);
    pointer-events: none;
}

.why-us::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, .45) 0%, rgba(99, 102, 241, .2) 40%, transparent 65%);
    filter: blur(8px);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.why-left .section-title {
    color: white;
}

.why-left .section-subtitle {
    color: rgba(255, 255, 255, .6);
    text-align: left;
    margin: 0 0 32px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, .08);
}

.feature-box .feat-icon {
    font-size: 22px;
}

.feature-box .feat-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(100% / 14);
    right: calc(100% / 14);
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.process-step:hover .step-icon {
    background: var(--blue-gradient);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 99, 235, .3);
}

.step-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   CASE STUDY + TESTIMONIALS + CTA
   ============================================================ */
.social-proof {
    padding: 100px 0;
    background: var(--light-bg);
}

.social-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* Case Study */
.case-study-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
}

.case-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.case-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.case-item {
    margin-bottom: 16px;
}

.case-item-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.case-item-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.case-result {
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(6, 182, 212, .08));
    border-radius: 10px;
    padding: 14px;
    margin-top: 16px;
    border: 1px solid rgba(37, 99, 235, .12);
}

.case-result .result-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    transition: gap .2s;
}

.case-link:hover {
    gap: 10px;
}

/* Testimonials */
.testimonials-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
}

.test-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 60px;
    line-height: .8;
    color: var(--blue);
    opacity: .3;
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.quote-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.author-role {
    font-size: 13px;
    color: var(--text-muted);
}

.test-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.test-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all .2s;
}

.test-dots span.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
}

/* CTA Card */
.cta-card {
    background: var(--gradient);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .4), transparent 70%);
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, .3), transparent 70%);
}

.cta-title {
    font-size: 26px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 28px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--navy);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: white;
    border: 1px solid rgba(255, 255, 255, .3);
    font-weight: 600;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
}

/* ============================================================
   TECHNOLOGY ECOSYSTEM
   ============================================================ */
.tech-ecosystem {
    padding: 100px 0;
    background: var(--white);
}

.tech-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tech-tab {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    background: var(--light-bg);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.tech-tab.active,
.tech-tab:hover {
    background: var(--blue-gradient);
    color: white;
    border-color: transparent;
}

.tech-logos-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-logo-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    background: var(--light-bg);
    border-radius: 14px;
    border: 1px solid var(--border);
    min-width: 90px;
    transition: all .3s;
}

.tech-logo-badge:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .15);
}

.tech-logo-badge:hover .tech-name {
    color: rgba(255, 255, 255, .8);
}

.tech-logo-badge:hover .tech-emoji {
    filter: brightness(1.3);
}

.tech-emoji {
    font-size: 32px;
}

.tech-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.tech-logo-badge:hover .tech-logo-img {
    filter: brightness(1.15) saturate(1.2);
}

.tech-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color .3s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, .7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, .5);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    transition: all .2s;
}

.social-link:hover {
    background: var(--blue);
    color: white;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: white;
    font-size: 13px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.newsletter-form input:focus {
    border-color: var(--blue);
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--blue-gradient);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: opacity .2s;
}

.newsletter-form button:hover {
    opacity: .85;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}

.footer-links a:hover {
    color: white;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .process-steps::before {
        display: none;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-ecosystem .tech-logos-row {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================================
   PAGE HERO (shared across Services, Solutions, Case Studies,
   Industries, About Us)
   ============================================================ */
.page-hero {
    background: var(--gradient);
    padding: 130px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37, 99, 235, .28) 0%, transparent 70%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin: 12px 0 20px;
    outline: none;
}

.page-hero-title .highlight {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, .72);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ============================================================
   PAGE CTA STRIP (shared)
   ============================================================ */
.page-cta-strip {
    background: var(--blue-gradient);
    padding: 64px 0;
}

.pcta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.pcta-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.pcta-sub {
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
}

.pcta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--blue);
    font-weight: 700;
}

.btn-white:hover {
    background: #f0f7ff;
}

.btn-ghost-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .5);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    transition: all .25s;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, .12);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
    font-weight: 600;
    transition: all .25s;
    cursor: pointer;
}

.btn-outline-dark:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* shared alt-bg */
.alt-bg {
    background: var(--light-bg);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail {
    padding: 70px 0;
}

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 20px 0;
}

.svc-row.reverse {
    direction: rtl;
}

.svc-row.reverse>* {
    direction: ltr;
}

.svc-divider {
    height: 1px;
    background: var(--border);
    margin: 56px 0;
}

.svc-badge {
    display: inline-block;
    font-size: 48px;
    font-weight: 900;
    color: var(--border);
    line-height: 1;
    margin-bottom: 8px;
}

.svc-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.svc-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.svc-features {
    list-style: none;
    margin-bottom: 24px;
}

.svc-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.svc-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.svc-tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tech-pills span {
    background: #EFF6FF;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid #BFDBFE;
}

.svc-visual {
    display: flex;
    justify-content: center;
}

/* Service mockup cards */
.svc-card-mockup {
    background: var(--navy);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .08);
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mock-dots {
    display: flex;
    gap: 5px;
}

.mock-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.mock-title {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 600;
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.mock-kpi {
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
}

.mock-kpi.blue {
    border-top: 2px solid #2563EB;
}

.mock-kpi.cyan {
    border-top: 2px solid #06B6D4;
}

.mock-kpi.green {
    border-top: 2px solid #10B981;
}

.mk-val {
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.mk-lbl {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px;
}

.mk-chg {
    font-size: 10px;
    color: #10B981;
    font-weight: 600;
}

.mock-chart-bar {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.mcb {
    flex: 1;
    background: var(--blue-gradient);
    border-radius: 4px 4px 0 0;
    opacity: .7;
    transition: opacity .2s;
}

.mcb:hover {
    opacity: 1;
}

/* SaaS plan mockup */
.mock-plans {
    display: flex;
    gap: 8px;
}

.mock-plan {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 14px 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
}

.mock-plan.featured {
    background: rgba(37, 99, 235, .25);
    border-color: #2563EB;
    transform: scale(1.05);
}

.mp-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-gradient);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
}

.mp-name {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 4px;
}

.mp-price {
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.mp-price span {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
}

.mp-users {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
}

/* AI chat mockup */
.ai-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.5;
}

.ai-msg.bot {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
    align-self: flex-start;
    border-radius: 4px 12px 12px 12px;
}

.ai-msg.user {
    background: var(--blue-gradient);
    color: white;
    align-self: flex-end;
    border-radius: 12px 4px 12px 12px;
}

.ai-typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px 12px 12px 12px;
    align-self: flex-start;
    width: 50px;
}

.ai-typing span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    animation: aiTyping 1s ease-in-out infinite;
}

.ai-typing span:nth-child(2) {
    animation-delay: .15s;
}

.ai-typing span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes aiTyping {

    0%,
    100% {
        opacity: .3;
        transform: translateY(0)
    }

    50% {
        opacity: 1;
        transform: translateY(-3px)
    }
}

/* Mobile phone mockup */
.mobile-mock {
    background: var(--navy);
}

.mm-phone {
    width: 160px;
    background: #1a2540;
    border-radius: 24px;
    padding: 16px 12px;
    border: 2px solid rgba(255, 255, 255, .12);
    margin: 0 auto;
}

.mm-notch {
    width: 40px;
    height: 6px;
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
    margin: 0 auto 12px;
}

.mm-screen {
    background: #0F172A;
    border-radius: 10px;
    padding: 12px;
}

.mm-header {
    color: white;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.mm-stat-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.mm-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 8px 4px;
    text-align: center;
}

.mm-stat-v {
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.mm-stat-l {
    font-size: 9px;
    color: rgba(255, 255, 255, .5);
}

.mm-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mm-bar {
    height: 6px;
    background: var(--blue-gradient);
    border-radius: 3px;
}

/* Infrastructure mockup */
.mock-infra {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mi-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mi-dot.green {
    background: #10B981;
}

.mi-dot.yellow {
    background: #F59E0B;
}

.mi-name {
    flex: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
}

.mi-stat {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
}

/* Design mockup */
.mock-design {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.md-color-row {
    display: flex;
    gap: 8px;
}

.md-color {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.md-typography {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
}

.md-components {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.md-btn-demo {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: var(--blue-gradient);
    color: white;
    cursor: default;
}

.md-btn-demo.outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8);
}

.md-badge-demo {
    background: rgba(6, 182, 212, .2);
    color: #06B6D4;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(6, 182, 212, .35);
}

/* ============================================================
   SOLUTIONS PAGE
   ============================================================ */
.solution-detail {
    padding: 80px 0;
}

.sol-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.sol-row.reverse {
    direction: rtl;
}

.sol-row.reverse>* {
    direction: ltr;
}

.sol-tag {
    display: inline-block;
    background: #EFF6FF;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid #BFDBFE;
    margin-bottom: 16px;
}

.sol-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.sol-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.sol-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 28px;
}

.sol-feat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.sf-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.sol-results {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.sol-result-item {
    text-align: center;
}

.sr-val {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}

.sr-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.sol-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sol-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Solution screen mockups */
.sol-screen-mockup {
    background: var(--navy);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    border: 1px solid rgba(255, 255, 255, .08);
}

.ssm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ssm-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.ssm-period {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.ssm-badge-live {
    color: #10B981;
    font-size: 11px;
    font-weight: 600;
}

/* KPI progress bars */
.ssm-kpis {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.ssm-kpi {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ssm-kpi-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    width: 130px;
    flex-shrink: 0;
}

.ssm-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden;
}

.ssm-bar {
    height: 100%;
    border-radius: 3px;
}

.ssm-kpi span {
    font-size: 11px;
    color: white;
    font-weight: 700;
    width: 30px;
    text-align: right;
}

.ssm-footer {
    display: flex;
    gap: 8px;
}

.ssm-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.ssm-badge.green {
    background: rgba(16, 185, 129, .2);
    color: #10B981;
}

.ssm-badge.yellow {
    background: rgba(245, 158, 11, .2);
    color: #F59E0B;
}

.ssm-badge.red {
    background: rgba(239, 68, 68, .15);
    color: #EF4444;
}

/* Team monitoring mockup */
.ssm-team {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ssm-member {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ssm-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.ssm-avatar.blue {
    background: var(--blue-gradient);
}

.ssm-avatar.green {
    background: linear-gradient(135deg, #10B981, #06B6D4);
}

.ssm-avatar.purple {
    background: linear-gradient(135deg, #8B5CF6, #2563EB);
}

.ssm-avatar.orange {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.ssm-minfo {
    flex: 1;
}

.ssm-mname {
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.ssm-mstatus {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
}

.ssm-mtime {
    font-size: 12px;
    color: var(--cyan);
    font-weight: 600;
}

/* ERP modules */
.ssm-erp-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ssm-module {
    padding: 14px 8px;
    text-align: center;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.ssm-module.blue {
    background: rgba(37, 99, 235, .35);
}

.ssm-module.cyan {
    background: rgba(6, 182, 212, .3);
}

.ssm-module.green {
    background: rgba(16, 185, 129, .3);
}

.ssm-module.purple {
    background: rgba(139, 92, 246, .3);
}

.ssm-module.orange {
    background: rgba(245, 158, 11, .3);
}

.ssm-module.red {
    background: rgba(239, 68, 68, .25);
}

/* CRM pipeline */
.ssm-pipeline {
    display: flex;
    gap: 6px;
}

.ssm-stage {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 12px 4px;
}

.ssm-stage.won {
    background: rgba(16, 185, 129, .25);
}

.ssm-stage-name {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 6px;
}

.ssm-stage-count {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.ssm-stage.won .ssm-stage-count {
    color: #10B981;
}

/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */
.cs-filter-bar {
    padding: 32px 0 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.cs-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.cs-filter {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .2s;
}

.cs-filter:hover,
.cs-filter.active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

.cs-grid-section {
    padding: 64px 0;
    background: var(--light-bg);
}

.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cs-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}

.cs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.cs-card-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cs-card-icon {
    font-size: 44px;
}

.cs-industry-badge {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .3);
}

.cs-card-body {
    padding: 24px;
}

.cs-company {
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cs-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cs-summary {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.cs-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: #F1F5F9;
    color: var(--text-dark);
}

.cs-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cs-metric {
    display: flex;
    flex-direction: column;
}

.cm-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--blue);
}

.cm-lbl {
    font-size: 11px;
    color: var(--text-muted);
}

.cs-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.cs-read-more:hover {
    text-decoration: underline;
}

/* Deep dive */
.cs-deep-dive {
    padding: 80px 0;
    background: white;
}

.csd-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    margin-top: 32px;
}

.csd-company {
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.csd-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.25;
}

.csd-section {
    margin-bottom: 28px;
}

.csd-section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    display: block;
}

.csd-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

.csd-results {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.csd-result {
    text-align: center;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 12px;
    min-width: 100px;
}

.cdr-val {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
}

.cdr-lbl {
    font-size: 12px;
    color: var(--text-muted);
}

.csd-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin-top: 32px;
}

.csd-quote-mark {
    font-size: 48px;
    color: var(--blue);
    line-height: .5;
    display: block;
    margin-bottom: 8px;
}

.csd-quote p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.csd-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.csd-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
}

.csd-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.csd-stat-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
}

.csd-stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.csd-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.csd-stat-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */
.industries-overview {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.ind-overview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.ind-overview-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--light-bg);
    border: 2px solid var(--border);
    transition: all .2s;
}

.ind-overview-chip:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #EFF6FF;
}

.industry-section {
    padding: 70px 0;
}

.ind-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 56px;
    align-items: start;
}

.ind-row.reverse {
    direction: rtl;
}

.ind-row.reverse>* {
    direction: ltr;
}

.ind-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ind-big-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
}

.ind-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}

.ind-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.ind-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.ind-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
}

.ind-col-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ind-list {
    list-style: none;
}

.ind-list li {
    padding: 7px 0 7px 18px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.ind-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: 12px;
}

.ind-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.ind-stat {
    text-align: center;
}

.is-val {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}

.is-lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Compact grid */
.industries-compact {
    padding: 80px 0;
}

.ind-compact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ind-compact-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}

.ind-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.icc-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.icc-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.icc-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.icc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.icc-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: #F1F5F9;
    color: var(--text-dark);
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.story-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Timeline */
.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 36px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: var(--border);
}

.st-item {
    position: relative;
    padding-bottom: 28px;
}

.st-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid white;
    box-shadow: 0 0 0 3px var(--border);
}

.st-item.current::before {
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .25);
}

.st-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.st-event {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.55;
}

/* Mission / Vision / Values */
.mvv-section {
    padding: 70px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mvv-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}

.mvv-card.featured-mvv {
    background: var(--navy);
    border-color: transparent;
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .3);
}

.mvv-card.featured-mvv .mvv-title {
    color: white;
}

.mvv-card.featured-mvv .mvv-text {
    color: rgba(255, 255, 255, .7);
}

.mvv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.mvv-card.featured-mvv:hover {
    transform: scale(1.03) translateY(-4px);
}

.mvv-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.mvv-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.mvv-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Stats */
.about-stats-section {
    padding: 70px 0;
    background: var(--gradient);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.about-stat {
    text-align: center;
}

.as-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: white;
    line-height: 1;
}

.as-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    margin-top: 6px;
}

.as-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px;
}

/* Team */
.team-section {
    padding: 70px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin: 0 auto 16px;
}

.team-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.team-skills span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: #F1F5F9;
    color: var(--text-dark);
}

/* Why different */
.about-why {
    padding: 80px 0;
}

.why-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wd-card {
    padding: 28px;
    border-radius: 16px;
    background: var(--light-bg);
    border: 1px solid var(--border);
}

.wd-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.wd-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.wd-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Testimonials */
.about-testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.testi-stars {
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.testi-avatar.blue {
    background: var(--blue-gradient);
}

.testi-avatar.green {
    background: linear-gradient(135deg, #10B981, #06B6D4);
}

.testi-avatar.orange {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.testi-author strong {
    display: block;
    font-size: 13px;
    color: var(--navy);
}

.testi-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE — NEW PAGES
   ============================================================ */
@media (max-width: 1024px) {

    .svc-row,
    .sol-row,
    .sol-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .svc-row.reverse>* {
        direction: ltr;
    }

    .sol-row.reverse>* {
        direction: ltr;
    }

    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-row,
    .ind-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .ind-row.reverse>* {
        direction: ltr;
    }

    .ind-icon-col {
        flex-direction: row;
        justify-content: flex-start;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ind-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .csd-grid {
        grid-template-columns: 1fr;
    }

    .csd-stats-panel {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .csd-stat-card {
        flex: 1;
        min-width: 160px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .mvv-card.featured-mvv {
        transform: none;
    }
}

@media (max-width: 768px) {
    .cs-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-diff-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sol-features-grid {
        grid-template-columns: 1fr;
    }

    .ind-two-col {
        grid-template-columns: 1fr;
    }

    .ind-compact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pcta-inner {
        flex-direction: column;
        text-align: center;
    }

    .pcta-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .team-grid,
    .why-diff-grid,
    .ind-compact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sol-results {
        gap: 16px;
    }
}

/* ============================================================
   SOLUTIONS PAGE — image variant + compact cards + best-for
   ============================================================ */
.sol-img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
    object-fit: cover;
    display: block;
}

.sol-best-for {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.sbf-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sbf-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: #F1F5F9;
    color: var(--text-dark);
}

.solutions-compact {
    padding: 80px 0;
}

.sol-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sol-compact-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s;
}

.sol-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.scc-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.scc-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.scc-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.scc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.scc-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: #EFF6FF;
    color: var(--blue);
    border: 1px solid #BFDBFE;
}

/* ============================================================
   CASE STUDIES — image cover variant
   ============================================================ */
.cs-img-cover {
    height: 160px;
    overflow: hidden;
    background: var(--navy);
}

.cs-img-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.cs-card:hover .cs-img-cover img {
    transform: scale(1.05);
}

/* ============================================================
   INDUSTRIES PAGE — gallery + table layout
   ============================================================ */
.ind-img-gallery {
    padding: 48px 0;
}

.ind-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ind-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.ind-table-grid {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.ind-table-row {
    display: grid;
    grid-template-columns: 48px 200px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: white;
    border-bottom: 1px solid var(--border);
    transition: background .2s;
}

.ind-table-row:last-child {
    border-bottom: none;
}

.ind-table-row:hover {
    background: #F8FAFC;
}

.ind-table-icon {
    font-size: 24px;
    text-align: center;
}

.ind-table-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
}

.ind-table-solutions {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   ABOUT US — image grid + tech stack
   ============================================================ */
.about-img-section {
    padding: 0 0 64px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.tech-stack-section {
    padding: 70px 0;
}

.tech-stack-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ts-group {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.ts-group-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 120px;
    flex-shrink: 0;
    padding-top: 6px;
}

.ts-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-pills span {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background: #F1F5F9;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

/* Responsive — additional classes */
@media (max-width: 1024px) {
    .sol-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-table-row {
        grid-template-columns: 40px 160px 1fr;
    }

    .about-img-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ts-group {
        flex-direction: column;
        gap: 8px;
    }

    .ts-group-label {
        width: auto;
    }
}

@media (max-width: 768px) {
    .sol-compact-grid {
        grid-template-columns: 1fr;
    }

    .ind-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ind-table-row {
        grid-template-columns: 36px 1fr;
    }

    .ind-table-solutions {
        display: none;
    }

    .about-img-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 180px;
    }

    .ind-gallery-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .ind-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   DETAIL PAGES — shared layout for Services / Solutions /
   Case Studies detail pages
   ============================================================ */

/* Breadcrumb */
.detail-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-breadcrumb a {
    color: rgba(255, 255, 255, .75);
}

.detail-breadcrumb a:hover {
    color: white;
}

.detail-breadcrumb span {
    color: rgba(255, 255, 255, .35);
}

/* Main layout */
.detail-body {
    padding: 64px 0 80px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

/* Main column */
.detail-section-h {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    color: var(--navy);
    margin: 40px 0 16px;
    padding-top: 8px;
    border-top: 2px solid var(--border);
}

.detail-section-h:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.detail-p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-list {
    list-style: none;
    margin: 0 0 16px;
}

.detail-list li {
    padding: 10px 0 10px 22px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* Capability grid */
.detail-capability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
}

.detail-cap-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
}

.dcc-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.detail-cap-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.detail-cap-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Examples */
.detail-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-example {
    padding: 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.de-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.detail-example p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Tech pills */
.detail-tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.detail-tech-row span {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background: #EFF6FF;
    color: var(--blue);
    border: 1px solid #BFDBFE;
}

/* Use-case / best-for chips */
.detail-usecase-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.detail-usecase-row span {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background: #F1F5F9;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

/* Results row */
.detail-results-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 12px 0 8px;
}

.drr-item {
    text-align: center;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-width: 110px;
}

.drr-val {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
}

.drr-lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* Detail hero image */
.detail-hero-img {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.detail-hero-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Case study meta bar */
.cs-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-muted);
}

.cs-detail-meta strong {
    color: var(--navy);
}

/* Quote */
.detail-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin-top: 32px;
}

.detail-quote blockquote {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 16px;
}

.dq-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dq-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

/* Sidebar */
.detail-cta-box {
    background: var(--navy);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 24px;
}

.detail-cta-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.detail-cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.detail-sidebar-links {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.detail-sidebar-links h4 {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.detail-sidebar-links a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.detail-sidebar-links a:last-child {
    border-bottom: none;
}

.detail-sidebar-links a:hover {
    color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-capability-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .detail-capability-grid {
        grid-template-columns: 1fr;
    }

    .detail-results-row {
        gap: 12px;
    }

    .drr-item {
        min-width: 80px;
        padding: 12px;
    }

    .cs-detail-meta {
        gap: 12px;
        flex-direction: column;
    }

    .detail-hero-img img {
        height: 200px;
    }
}

/* ============================================================
   VISUAL ENHANCEMENTS — 2026 Polish Pass
   ============================================================ */

/* ---- Section labels & titles ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
}

.section-title {
    background: linear-gradient(135deg, var(--navy) 30%, #1E4FAF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Page hero — animated orbs & mesh ---- */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, .18) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* ---- Service cards (home) ---- */
.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, .14);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue-gradient);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    border: 1px solid #BFDBFE;
    transition: transform .3s ease, background .3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
}

.service-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    transition: gap .2s ease, color .2s;
}

.service-card:hover .service-link {
    gap: 10px;
    color: #1D4ED8;
}

/* ---- Industry cards (home) ---- */
.industry-card {
    background: white;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(37, 99, 235, .12);
    border-color: #BFDBFE;
}

.industry-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    transition: transform .3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15);
}

.industry-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

/* ---- Solution cards (home) ---- */
.solution-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}

.solution-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.solution-card:hover .solution-img img {
    transform: scale(1.06);
}

.solution-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, .5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
}

.solution-card:hover .solution-img::after {
    opacity: 1;
}

.solution-body {
    padding: 20px;
}

.solution-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.solution-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    transition: gap .2s;
}

.solution-card:hover .solution-link {
    gap: 10px;
}

/* ---- Why-us / stats boxes ---- */
.stat-box {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, .1);
}

.stat-number {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* ---- Feature boxes (why-us) ---- */
.feature-box {
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    transition: border-color .2s, transform .2s;
}

.feature-box:hover {
    border-color: var(--blue);
    transform: translateX(4px);
}

.feat-icon {
    font-size: 20px;
}

.feat-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* ---- Process steps ---- */
.process-step {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, .12);
    border-color: #BFDBFE;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 1px solid #BFDBFE;
    transition: background .3s;
}

.process-step:hover .step-icon {
    background: var(--blue-gradient);
    color: white;
}

.step-num {
    display: none;
}

.step-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Step number badge */
.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-gradient);
    color: white;
    font-size: 11px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .3);
}

/* ---- Case study cards ---- */
.cs-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    transition: transform .3s ease, box-shadow .3s ease;
}

.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
}

.cs-card-img {
    position: relative;
    height: 180px;
}

.cs-card-img.cs-img-cover {
    height: 180px;
}

.cs-industry-badge {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: rgba(255, 255, 255, .95);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.cs-card-body {
    padding: 24px;
}

.cs-company {
    font-size: 11px;
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cs-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
}

.cs-summary {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.cs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.cs-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: #EFF6FF;
    color: var(--blue);
    border: 1px solid #BFDBFE;
}

.cs-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--light-bg);
    border-radius: 10px;
}

.cs-metric {
    display: flex;
    flex-direction: column;
}

.cm-val {
    font-size: 20px;
    font-weight: 900;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cm-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.cs-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    padding: 8px 16px;
    background: #EFF6FF;
    border-radius: 8px;
    border: 1px solid #BFDBFE;
    transition: all .2s ease;
}

.cs-read-more:hover {
    background: var(--blue-gradient);
    color: white;
    border-color: transparent;
    transform: translateX(2px);
}

/* ---- Social proof / testimonial cards ---- */
.case-study-card,
.testimonials-card,
.cta-card {
    border-radius: 20px;
    padding: 32px;
}

.case-study-card {
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.testimonials-card {
    background: var(--navy);
    color: white;
}

.quote-text {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255, 255, 255, .85);
}

.quote-mark {
    font-size: 72px;
    color: var(--blue);
    line-height: .8;
    font-family: Georgia, serif;
}

.test-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    margin: 0 3px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.test-dots span.active {
    background: var(--cyan);
    transform: scale(1.3);
}

/* ---- CTA strip (page-level) ---- */
.page-cta-strip {
    background: var(--blue-gradient);
    position: relative;
    overflow: hidden;
}

.page-cta-strip::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.page-cta-strip::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -80px;
    left: 10%;
    pointer-events: none;
}

.page-cta-strip .container {
    position: relative;
    z-index: 1;
}

/* ---- svc-badge (service number) ---- */
.svc-badge {
    display: inline-block;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -2px;
}

/* ---- Tech pills (service page) ---- */
.svc-tech-pills span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #EFF6FF;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid #BFDBFE;
    transition: background .2s, color .2s;
}

.svc-tech-pills span:hover {
    background: var(--blue-gradient);
    color: white;
    border-color: transparent;
}

/* ---- svc-features list ---- */
.svc-features li {
    padding: 5px 0 5px 26px;
    border-bottom: 1px solid #F1F5F9;
}

.svc-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--blue);
    font-weight: 700;
    top: 10px;
}

/* ---- Detail capability cards ---- */
.detail-cap-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}

.detail-cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, .1);
    border-color: #BFDBFE;
}

.dcc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border: 1px solid #BFDBFE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
    transition: background .3s;
}

.detail-cap-card:hover .dcc-icon {
    background: var(--blue-gradient);
}

.detail-cap-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 7px;
}

/* ---- Detail sidebar CTA box ---- */
.detail-cta-box {
    background: var(--navy);
    border-radius: 20px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, .3);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .25);
}

.detail-cta-box::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .3) 0%, transparent 70%);
    top: -60px;
    right: -40px;
    pointer-events: none;
}

/* ---- Sidebar links ---- */
.detail-sidebar-links a:hover {
    color: var(--blue);
    text-decoration: none;
}

/* ---- Detail hero img ---- */
.detail-hero-img img {
    height: 360px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    transition: transform .4s ease;
}

.detail-hero-img img:hover {
    transform: scale(1.01);
}

/* ---- Breadcrumb ---- */
.detail-breadcrumb {
    background: rgba(255, 255, 255, .1);
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: 20px;
}

/* ---- Results row ---- */
.drr-val {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drr-item {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .06);
    transition: transform .2s, box-shadow .2s;
}

.drr-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, .12);
}

/* ---- About stats numbers ---- */
.as-number {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Team cards ---- */
.team-card {
    border-radius: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, .12);
}

.team-role {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Testimonial cards (about page) ---- */
.testi-card {
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: #EFF6FF;
    line-height: 1;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(37, 99, 235, .1);
}

.testi-stars {
    color: #F59E0B;
    letter-spacing: 3px;
    font-size: 16px;
}

/* ---- Why-diff cards ---- */
.wd-card {
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    position: relative;
    overflow: hidden;
}

.wd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(37, 99, 235, .1);
    border-color: #BFDBFE;
}

.wd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 24px;
    border: 1px solid #BFDBFE;
    transition: background .3s;
}

.wd-card:hover .wd-icon {
    background: var(--blue-gradient);
}

/* ---- Mission / Vision / Values ---- */
.mvv-card {
    border-radius: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}

.mvv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 18px;
    border: 1px solid #BFDBFE;
}

.mvv-card.featured-mvv .mvv-icon {
    background: rgba(37, 99, 235, .25);
    border-color: rgba(37, 99, 235, .3);
}

/* ---- Industry overview chips ---- */
.ind-overview-chip {
    transition: all .2s ease;
}

.ind-overview-chip:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #EFF6FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, .12);
}

/* ---- Industry compact cards ---- */
.ind-compact-card {
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ind-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.icc-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    transition: transform .3s ease;
}

.ind-compact-card:hover .icc-icon {
    transform: scale(1.1) rotate(-3deg);
}

/* ---- Sol compact cards ---- */
.sol-compact-card {
    border-radius: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.sol-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
}

.scc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 16px;
    border: 1px solid #BFDBFE;
    transition: background .3s;
}

.sol-compact-card:hover .scc-icon {
    background: var(--blue-gradient);
}

/* ---- CS filter bar ---- */
.cs-filter-bar {
    padding: 0;
    border-bottom: 2px solid var(--border);
}

.cs-filters {
    padding-bottom: 1px;
    gap: 6px;
}

.cs-filter {
    padding: 12px 22px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--text-muted);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: -2px;
}

.cs-filter:hover {
    color: var(--navy);
    border-bottom-color: var(--border);
}

.cs-filter.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    background: transparent;
}

/* ---- Solution image ---- */
.sol-img {
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .15);
    transition: transform .4s ease, box-shadow .4s ease;
}

.sol-img:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 32px 80px rgba(37, 99, 235, .18);
}

/* ---- Sol results ---- */
.sr-val {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- CSD (case study deep dive) ---- */
.csd-result {
    background: white;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .06);
    transition: transform .2s;
}

.csd-result:hover {
    transform: translateY(-2px);
}

.cdr-val {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- cs-deep-dive section ---- */
.cs-deep-dive {
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 80px 0;
}

/* ---- Trust logos scroll animation ---- */
@keyframes trustScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trust-logos {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

/* ---- General animations ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero .container>* {
    animation: fadeInUp .6s ease both;
}

.page-hero .container>*:nth-child(1) {
    animation-delay: .05s;
}

.page-hero .container>*:nth-child(2) {
    animation-delay: .15s;
}

.page-hero .container>*:nth-child(3) {
    animation-delay: .25s;
}

.page-hero .container>*:nth-child(4) {
    animation-delay: .35s;
}

/* ---- Scrollbar polish ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}