@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --font: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --bg: #1e293b;
    --surface: #27344a;
    --surface-2: #2f3e58;
    --surface-3: #4a5d7f;

    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --text-subtle: #94a3b8;
    --line: rgba(203, 213, 225, .18);
    --line-strong: rgba(203, 213, 225, .28);

    /* Brand */
    --primary: #ff3300;
    --primary-hover: #ff5c33;
    --primary-deep: #cc2900;
    --primary-soft: rgba(255, 51, 0, .14);

    --accent: #ff3300;
    --accent-hover: #ff5c33;
    --accent-2: #ff5c33;
    --accent-3: #ff7a45;

    --blue: #38bdf8;
    --blue-soft: rgba(56, 189, 248, .14);
    --green: #22c55e;
    --green-soft: rgba(34, 197, 94, .14);
    --amber: #f59e0b;
    --amber-soft: rgba(245, 158, 11, .14);
    --purple: #a78bfa;
    --purple-soft: rgba(167, 139, 250, .14);

    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, .2);
    --shadow: 0 16px 45px rgba(0, 0, 0, .34);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .28);

    --container-pad: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.55;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-hover); }

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

h1, h2, h3, h4, p { margin-top: 0; }
h1 { font-size: 44px; line-height: 1.1; font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
h2 { font-size: 24px; line-height: 1.25; font-weight: 800; margin-bottom: 8px; text-align: center; }
h3 { font-size: 18px; line-height: 1.3; font-weight: 800; margin-bottom: 8px; }
h4 { font-size: 16px; line-height: 1.3; font-weight: 800; margin-bottom: 6px; }
h5 { font-size: 13px; margin: 0 0 12px; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; }
p { color: var(--text-muted); }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px var(--container-pad);
    position: relative;
    z-index: 1;
}

.badge-icon { display: none; }

/* ========== Background decoration (alternating shapes) ========== */
.bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.bg-decoration svg {
    position: absolute;
    top: 0;
    width: 60%;
    height: 100%;
}
.bg-decoration--left svg  { left: 0; }
.bg-decoration--right svg { right: 0; }
.bg-decoration .shape-blob   { fill: var(--primary); opacity: 0.08; }
.bg-decoration .shape-soft   { fill: var(--primary-hover); opacity: 0.06; }
.bg-decoration .shape-line   { stroke: var(--primary); stroke-width: 1.5; fill: none; opacity: 0.18; }
.bg-decoration .shape-accent { fill: var(--primary); opacity: 0.4; }
.bg-decoration .shape-deep   { fill: var(--surface-3); opacity: 0.4; }
.bg-decoration .shape-white  { fill: var(--surface-3); opacity: 0.5; }
.bg-decoration .line-white   { stroke: var(--line-strong); stroke-width: 1.5; fill: none; opacity: 0.5; }
.bg-decoration .dot-white    { fill: var(--text-subtle); opacity: 0.5; }

@media (max-width: 767px) {
    .bg-decoration { display: none; }
}

/* ========== Header (light) ========== */
.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.site-header .container { padding-top: 12px; padding-bottom: 12px; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
}
.logo-img { height: 44px; width: auto; display: block; }
.logo-img-footer {
    height: 40px;
    margin-bottom: 12px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
    color: #475569;
    font-weight: 700;
}
.main-nav a {
    color: #1e293b;
    font-size: 14px;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--primary); }
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { border-bottom: 2px solid var(--primary); }
.main-nav .caret { font-size: 10px; opacity: .7; color: #64748b; }
.nav-search { font-size: 16px; color: #1e293b; }

/* Dropdown submenu (hover-triggered) */
.main-nav li.has-dropdown { position: relative; }
.main-nav .submenu {
    display: block;
    list-style: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12), 0 4px 12px rgba(15, 23, 42, .06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 200;
}
.main-nav .submenu li { display: block; width: 100%; }
.main-nav li.has-dropdown:hover > .submenu,
.main-nav li.has-dropdown:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .submenu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 30px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    transform: rotate(45deg);
}
.main-nav .submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 600;
    transition: background .15s ease, color .15s ease;
    white-space: nowrap;
}
.main-nav .submenu a:hover,
.main-nav .submenu a.active {
    background: transparent;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.submenu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
}

/* Button override for light header */
.site-header .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.site-header .btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 51, 0, .25);
}

/* Hide / dim previous dark-bg header decorations */
.site-header-decor { display: none; }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 38px;
    padding: 0 15px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .5s, height .5s;
}
.btn:hover::before { width: 300px; height: 300px; }
.btn > * { position: relative; z-index: 2; }

.btn-outline {
    border-color: var(--line);
    color: var(--text);
    background: var(--surface);
}
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff!important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 51, 0, .35);
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line);
}
.btn-ghost:hover {
    background: var(--primary-soft);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.mobile-menu-toggle { display: none; }
.mobile-contact-item { display: none; }

/* ========== Breadcrumb ========== */
.breadcrumb {
    padding: 14px 0;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .container { padding-top: 0; padding-bottom: 0; }

/* ========== Hero + Brief + Mission (merged wide section) ========== */
.hero-mission {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 51, 0, .22), transparent 60%),
        radial-gradient(circle at 10% 30%, rgba(255, 87, 26, .12), transparent 50%),
        linear-gradient(180deg, #1a1d24 0%, #111412 60%, #0c0f0d 100%);
    color: #fff;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
}

.hm-block {
    margin-bottom: 80px;
}
.hm-block:last-child { margin-bottom: 0; }

.hm-accent { color: var(--primary); }

/* Block 1: Hero title + lead */
.hm-hero {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 80px;
    animation-delay: 0s;
}
.hm-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 24px;
}
.hm-lead {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(226, 227, 223, 0.7);
    max-width: 720px;
    margin: 0 auto;
}

/* Block 2: Stats */
.hm-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 90px;
}
.hm-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform .35s ease;
}
.hm-stat:hover { transform: translateY(-4px); }
.hm-stat-num {
    font-size: clamp(56px, 7vw, 80px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hm-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(226, 227, 223, 0.65);
    font-weight: 700;
}

/* Block 3: Mission & Vision asymmetric */
.hm-mv { max-width: 1100px; margin: 0 auto 80px; }

/* MV row (asymmetric layout) */
.mv-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}
.mv-row:last-child { margin-bottom: 0; }
.mv-row-reverse { flex-direction: row-reverse; }

/* Heading column with number + label */
.mv-heading {
    flex: 0 0 36%;
    position: relative;
    padding: 14px 0 14px 24px;
    border-left: 3px solid var(--primary);
}
.mv-heading::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 50%;
    background: linear-gradient(180deg, var(--primary), transparent);
}
.mv-row-reverse .mv-heading { border-left: none; border-right: 3px solid var(--primary); padding: 14px 24px 14px 0; }
.mv-row-reverse .mv-heading::before {
    left: auto;
    right: -3px;
    background: linear-gradient(180deg, transparent, var(--primary));
    top: 50%;
}

/* Big translucent number (01, 02) */
.mv-num {
    position: absolute;
    top: -56px;
    left: -20px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255, 87, 26, 0.08);
    pointer-events: none;
    z-index: 0;
    font-family: 'Hanken Grotesk', var(--font);
}
.mv-row-reverse .mv-num { left: auto; right: -20px; }

/* Label content (icon + prefix + title) */
.mv-label {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(255, 87, 26, 0.2), rgba(255, 51, 0, 0.1));
    color: var(--primary);
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 87, 26, 0.25);
    box-shadow: 0 6px 20px rgba(255, 51, 0, 0.2);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.mv-row:hover .mv-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 10px 28px rgba(255, 51, 0, 0.35);
}
.mv-prefix {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(226, 227, 223, 0.55);
    font-weight: 700;
    margin-left: 2px;
}
.mv-title {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #ffffff 0%, #ffb59e 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Glass-panel content with quote + divider */
.mv-content {
    flex: 1;
    position: relative;
    padding: 36px 40px 32px;
    background: rgba(30, 32, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    border-radius: 18px;
    color: rgba(226, 227, 223, 0.92);
    font-size: 18px;
    line-height: 1.7;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .3s, background .3s;
    overflow: hidden;
}
.mv-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}
.mv-content::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 87, 26, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: transform .4s;
}
.mv-content p { margin: 0; }
.mv-quote {
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 90px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.18;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
}
.mv-divider {
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin-top: 20px;
    border-radius: 2px;
}
.mv-row:hover .mv-content {
    transform: translateY(-6px) scale(1.005);
    box-shadow: 0 32px 64px -16px rgba(255, 87, 26, 0.25);
    border-color: rgba(255, 87, 26, 0.4);
    background: rgba(30, 32, 30, 0.55);
}
.mv-row:hover .mv-content::after { transform: scale(1.4); }

/* Block 4: Core Values */
.hm-values {
    text-align: center;
    margin-bottom: 0;
}
.hm-values-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}
.hm-grid {
    max-width: 980px;
    margin: 0 auto;
}
.hm-grid .value-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1e201e, #111412);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 32px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .5);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, border-color .3s, background .3s;
}
.hm-grid .value-card:hover .value-icon-wrap {
    transform: scale(1.05) rotate(-6deg);
    background: linear-gradient(135deg, rgba(255, 87, 26, 0.3), rgba(255, 51, 0, 0.12));
    border-color: rgba(255, 87, 26, 0.7);
    box-shadow: 0 14px 34px rgba(255, 51, 0, 0.35);
}
.hm-grid .value-icon {
    color: var(--primary);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-mission { padding: 70px 0 80px; }
    .hm-block { margin-bottom: 60px; }
    .hm-stats { gap: 30px 40px; }
    .mv-row, .mv-row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .mv-heading, .mv-row-reverse .mv-heading {
        flex: 1;
        padding: 14px 24px;
        border-left: none;
        border-right: none;
        border-top: 3px solid var(--primary);
    }
    .mv-heading::before, .mv-row-reverse .mv-heading::before { display: none; }
    .mv-row-reverse .mv-heading { border-top: 3px solid var(--primary); }
    .mv-title { font-size: 38px; }
    .mv-num { font-size: 100px; top: -42px; left: 50%; transform: translateX(-50%); }
    .mv-row-reverse .mv-num { left: 50%; right: auto; }
    .mv-icon { margin-left: auto; margin-right: auto; }
    .mv-content { padding: 28px 24px 24px; }
    .mv-quote { font-size: 70px; top: -6px; left: 16px; }
}

/* (legacy hero css kept for reference) */
.hero {
    text-align: center;
    padding: 70px 0 80px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 51, 0, .22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(56, 189, 248, .12), transparent 30%),
        linear-gradient(180deg, #2a3a52, #1e293b);
    position: relative;
    overflow: hidden;
}
.hero-decor { display: none; }
.hero h1 { margin-bottom: 18px; }
.hero-text {
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--text-muted);
    font-size: 16px;
}
.hero-stats {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hero-stats li {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.hero-stats strong {
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    margin-right: 4px;
}
.hero-stats span { font-size: 12px; color: var(--text-subtle); }

/* ========== Industries page — orbit hero ========== */
.industry-orbit-hero { padding: 100px 0 110px; }
.industry-orbit {
    position: relative;
    z-index: 1;
    max-width: 860px;
    min-height: 700px;
    margin: 0 auto;
}
.io-lines {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}
.io-lines path {
    fill: none;
    stroke: rgba(255, 51, 0, .4);
    stroke-width: 2;
    stroke-dasharray: 5 7;
}
.io-center {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: min(420px, 90%);
    padding: 34px 36px;
    text-align: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 51, 0, .4);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, .9);
    box-shadow: 0 0 70px rgba(255, 51, 0, .2), 0 18px 42px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.io-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.io-center h1 { margin-bottom: 12px; font-size: clamp(26px, 3vw, 34px); }
.io-center p { margin: 0; color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }
.io-node {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 190px;
    text-align: center;
    color: inherit;
}
.io-node--top { top: 0; left: 50%; transform: translateX(-50%); }
.io-node--bottom-left { bottom: 0; left: 0; }
.io-node--bottom-right { right: 0; bottom: 0; }
.io-node-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border: 1.5px solid rgba(255, 51, 0, .45);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 51, 0, .18), rgba(15, 23, 42, .9));
    box-shadow: 0 10px 26px rgba(0, 0, 0, .32);
    font-size: 38px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.io-node-label {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .2s ease;
}
.io-node-desc {
    display: block;
    margin-top: 2px;
    color: var(--text-subtle);
    font-size: 12.5px;
    line-height: 1.5;
}
.io-node:hover .io-node-icon { transform: scale(1.08); box-shadow: 0 12px 30px rgba(255, 51, 0, .35); }
.io-node:hover .io-node-label { color: var(--primary-hover); }
@media (max-width: 767px) {
    .industry-orbit-hero { padding: 60px 0 50px; }
    .industry-orbit {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 26px;
        min-height: 0;
    }
    .io-lines { display: none; }
    .io-center { position: static; width: 100%; transform: none; }
    .io-node { position: static; flex-direction: row; align-items: center; width: 100%; max-width: 360px; gap: 16px; text-align: left; transform: none; }
    .io-node-icon { width: 68px; height: 68px; font-size: 28px; flex-shrink: 0; }
    .io-node-text { flex: 1; }
}

/* ========== Industry detail hero — commerce cluster ========== */
.commerce-hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    text-align: left;
}
.commerce-hero-text h1,
.commerce-hero-text .hero-text { text-align: left; margin-left: 0; margin-right: 0; }
.commerce-hero-text .hero-stats { justify-content: flex-start; }
.commerce-orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    aspect-ratio: 1 / 1;
    max-width: 460px;
    margin: 0 auto;
}
.co-center {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(255, 51, 0, .4);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, .9);
    box-shadow: 0 0 40px rgba(255, 51, 0, .18), 0 14px 30px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.co-center-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.co-center h3 { margin: 0; font-size: 15px; color: var(--text); line-height: 1.25; }
.co-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}
.co-node-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 51, 0, .45);
    background: linear-gradient(145deg, rgba(255, 51, 0, .16), rgba(15, 23, 42, .9));
    box-shadow: 0 6px 16px rgba(0, 0, 0, .28);
    font-size: 19px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.co-node:hover .co-node-icon { transform: scale(1.08); box-shadow: 0 8px 20px rgba(255, 51, 0, .35); }
.co-node-label { font-size: 10.5px; font-weight: 700; color: var(--text-muted); line-height: 1.3; }
@media (max-width: 900px) {
    .commerce-hero .container { grid-template-columns: 1fr; text-align: center; }
    .commerce-hero-text h1,
    .commerce-hero-text .hero-text { text-align: center; margin-left: auto; margin-right: auto; }
    .commerce-hero-text .hero-stats { justify-content: center; }
    .commerce-orbit { margin-top: 36px; }
}
@media (max-width: 480px) {
    .commerce-orbit { max-width: 300px; gap: 8px; }
    .co-node-icon { width: 38px; height: 38px; font-size: 15px; }
    .co-node-label { font-size: 9px; }
    .co-center h3 { font-size: 12px; }
}

/* ========== Digital Transformation page ========== */
.digital-transformation-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 51, 0, .22), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(56, 189, 248, .12), transparent 30%),
        linear-gradient(180deg, #2a3a52, #1e293b);
}
.digital-transformation-hero h1 {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(40px, 5.5vw, 62px);
}
.dt-hero-lead {
    max-width: 940px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.65;
}
.dt-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 46px auto 32px;
}
.dt-pillar {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 210px;
    padding: 28px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, .28);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    color: var(--text);
}
.dt-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 28px;
}
.dt-pillar h2 {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}
.dt-roadmap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.dt-roadmap li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 130px;
    height: 112px;
    padding: 16px 24px;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: rgba(255, 51, 0, .45);
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}
.dt-roadmap li::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 1px;
    clip-path: inherit;
    background: var(--surface-2);
}
.dt-roadmap li span {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 10px;
    letter-spacing: .1em;
}
.dt-program-roadmap {
    display: grid;
    grid-template-columns: minmax(175px, 1fr) 66px minmax(175px, 1fr) 66px minmax(175px, 1fr) 66px minmax(175px, 1fr);
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
}
.dt-stage {
    align-self: stretch;
    min-height: 318px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, .28);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    overflow: hidden;
}
.dt-stage header {
    min-height: 98px;
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--surface-2);
    text-align: center;
}
.dt-stage header span {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}
.dt-stage h3 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.3;
}
.dt-stage ul {
    display: grid;
    gap: 10px;
    padding: 22px 18px;
    margin: 0;
    list-style: none;
}
.dt-stage li {
    padding: 10px 12px;
    border: 1px solid rgba(203, 213, 225, .16);
    border-left: 2px solid var(--primary);
    border-radius: var(--radius-xs);
    background: rgba(30, 41, 59, .56);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}
.dt-gate {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    color: var(--text-subtle);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}
.dt-gate i {
    position: relative;
    display: block;
    width: 42px;
    height: 2px;
    background: var(--text-subtle);
}
.dt-gate i::after {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--text-subtle);
    border-right: 2px solid var(--text-subtle);
    transform: rotate(45deg);
}
.dt-pmo-rail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 1020px;
    margin: 30px auto 0;
    padding: 16px 22px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, .3);
    color: var(--text-muted);
    text-align: left;
}
.dt-pmo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    line-height: 1;
}
.dt-pmo-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}
.dt-pmo-rail strong,
.dt-pmo-rail span { display: block; }
.dt-pmo-rail strong { margin-bottom: 2px; color: var(--text); font-size: 13px; }
.dt-pmo-rail span { font-size: 13px; line-height: 1.45; }
.section.light .dt-stage {
    border-color: #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.section.light .dt-stage header {
    border-bottom-color: #e2e8f0;
    background: #f8fafc;
}
.section.light .dt-stage h3 { color: #0f172a; }
.section.light .dt-stage li {
    border-color: #e2e8f0;
    border-left-color: var(--primary);
    background: #ffffff;
    color: #475569;
}
.section.light .dt-gate { color: #64748b; }
.section.light .dt-gate i { background: #94a3b8; }
.section.light .dt-gate i::after { border-color: #94a3b8; }
.section.light .dt-pmo-rail {
    border-color: #e2e8f0;
    border-left-color: var(--primary);
    background: #f8fafc;
    color: #475569;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.section.light .dt-pmo-rail strong { color: #0f172a; }
.digital-transformation-services h2 { color: var(--text); }
.dt-title-accent { color: var(--primary); }
.digital-transformation-services .lead { max-width: 720px; }
.dt-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 1060px;
    margin: 40px auto 0;
}
.dt-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, .28);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    color: var(--text);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.dt-service-card::after {
    content: '';
    position: absolute;
    top: -76px;
    right: -76px;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    background: rgba(255, 51, 0, .09);
    pointer-events: none;
}
.dt-service-card:hover {
    border-color: rgba(255, 51, 0, .55);
    background: rgba(15, 23, 42, .48);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
    color: var(--text);
}
.dt-service-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    font-family: 'Segoe UI Symbol', 'Arial Unicode MS', sans-serif;
    font-size: 20px;
    line-height: 1;
}
.dt-service-card h3,
.dt-service-card p,
.dt-service-link {
    position: relative;
    z-index: 1;
}
.dt-service-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
}
.dt-service-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}
.dt-service-link {
    margin-top: auto;
    padding-top: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.dt-service-link b { margin-left: 5px; font-size: 17px; vertical-align: -1px; }
.digital-transformation-cta {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #263f62);
}
.digital-transformation-cta h2 { color: #fff; }
.digital-transformation-cta .lead { max-width: 650px; margin: 0 auto 26px; }

@media (max-width: 1024px) {
    .dt-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; }
    .dt-roadmap { flex-wrap: wrap; max-width: 580px; margin: 0 auto; }
    .dt-program-roadmap { grid-template-columns: minmax(155px, 1fr) 48px minmax(155px, 1fr) 48px minmax(155px, 1fr) 48px minmax(155px, 1fr); }
}
@media (max-width: 840px) {
    .dt-program-roadmap {
        display: flex;
        flex-direction: column;
        max-width: 520px;
    }
    .dt-stage { width: 100%; min-height: 0; }
    .dt-stage header { min-height: 0; }
    .dt-gate {
        min-height: 64px;
        gap: 7px;
    }
    .dt-gate i { width: 2px; height: 26px; }
    .dt-gate i::after {
        top: auto;
        right: -4px;
        bottom: 0;
        transform: rotate(135deg);
    }
    .dt-pmo-rail { max-width: 520px; margin-top: 20px; }
}
@media (max-width: 768px) {
    .dt-services-grid { grid-template-columns: 1fr; margin-top: 30px; }
    .dt-service-card { min-height: 0; padding: 22px; }
}
@media (max-width: 600px) {
    .dt-hero-lead { font-size: 16px; }
    .dt-pillars { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
    .dt-pillar { min-height: 150px; }
    .dt-roadmap { gap: 8px; }
    .dt-roadmap li { width: 110px; height: 96px; font-size: 13px; }
    .dt-stage header { padding: 18px 16px; }
    .dt-stage ul { padding: 16px; }
    .dt-pmo-rail { align-items: flex-start; padding: 15px; }
}

/* ========== Logistics hero network ========== */
.logistics-map {
    position: relative;
    max-width: 1120px;
    min-height: 400px;
    margin: 52px auto 0;
    isolation: isolate;
}
.logistics-map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: visible;
}
.logistics-map-lines path {
    fill: none;
    stroke: rgba(56, 189, 248, .5);
    stroke-width: 2;
    stroke-dasharray: 5 7;
}
.lm-node {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 180px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}
.lm-node-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(56, 189, 248, .45);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(56, 189, 248, .24), rgba(15, 23, 42, .88));
    box-shadow: 0 8px 20px rgba(0, 0, 0, .24);
    font-size: 22px;
}
.lm-node--top-left { top: 42px; left: 4%; }
.lm-node--top { top: 0; left: 50%; width: 160px; transform: translateX(-50%); }
.lm-node--top-right { top: 42px; right: 4%; }
.lm-node--left { top: 194px; left: 0; }
.lm-node--right { top: 194px; right: 0; }
.lm-node--bottom-left { bottom: 18px; left: 8%; }
.lm-node--bottom { bottom: 0; left: 50%; width: 160px; transform: translateX(-50%); }
.lm-node--bottom-right { right: 8%; bottom: 18px; }
.lm-node--top-right,
.lm-node--right,
.lm-node--bottom-right {
    flex-direction: row-reverse;
    text-align: right;
}
.lm-center {
    position: absolute;
    z-index: 3;
    top: 91px;
    left: 50%;
    width: min(390px, 42%);
    padding: 24px 28px;
    transform: translateX(-50%);
    border: 1px solid rgba(56, 189, 248, .55);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, .86);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.lm-center::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: -10px;
    left: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.lm-center-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.lm-center h2 {
    margin-bottom: 8px;
    color: var(--text);
    font-size: clamp(21px, 2.5vw, 30px);
    text-align: center;
}
.lm-center p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
}
.lm-truck {
    position: absolute;
    z-index: 1;
    bottom: 57px;
    left: 50%;
    width: 350px;
    height: 80px;
    transform: translateX(-50%);
}
.lm-truck-cargo,
.lm-truck-cab {
    position: absolute;
    bottom: 17px;
    display: block;
    height: 55px;
    border: 1px solid rgba(56, 189, 248, .56);
    background: linear-gradient(145deg, rgba(56, 189, 248, .82), rgba(37, 99, 235, .7));
}
.lm-truck-cargo {
    left: 0;
    width: 230px;
    border-radius: 8px 4px 4px 6px;
}
.lm-truck-cargo::before {
    content: '';
    position: absolute;
    top: 11px;
    right: 18px;
    left: 18px;
    height: 2px;
    background: rgba(255, 255, 255, .34);
    box-shadow: 0 14px 0 rgba(255, 255, 255, .2);
}
.lm-truck-cab {
    right: 15px;
    width: 110px;
    border-radius: 7px 12px 4px 4px;
}
.lm-truck-cab::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 18px;
    border-radius: 3px;
    background: rgba(15, 23, 42, .65);
}
.lm-truck-wheel {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    border: 6px solid #172033;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 2px rgba(56, 189, 248, .45);
}
.lm-truck-wheel--one { left: 58px; }
.lm-truck-wheel--two { right: 42px; }
.lm-truck-road {
    position: absolute;
    right: -25px;
    bottom: 10px;
    left: -25px;
    border-top: 2px dashed rgba(203, 213, 225, .32);
}
@media (max-width: 768px) {
    .logistics-map {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        min-height: 0;
        margin-top: 38px;
    }
    .logistics-map-lines { display: none; }
    .lm-center,
    .lm-truck,
    .lm-node {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: auto;
        transform: none;
    }
    .lm-center {
        grid-column: 1 / -1;
        grid-row: 1;
        order: -2;
        padding: 22px 20px;
    }
    .lm-truck {
        grid-column: 1 / -1;
        grid-row: 2;
        order: -1;
        width: 320px;
        max-width: 100%;
        margin: 2px auto 12px;
    }
    .lm-node {
        justify-content: flex-start;
        min-height: 54px;
        padding: 7px 8px;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        background: rgba(15, 23, 42, .26);
        text-align: left;
    }
    .lm-node--top-right,
    .lm-node--right,
    .lm-node--bottom-right { flex-direction: row; }
    .lm-node-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .logistics-map { grid-template-columns: 1fr; }
    .lm-node { grid-column: 1; }
}

/* ========== Innovation Hero ========== */
.innovation-hero {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 51, 0, .12), transparent 48%),
        var(--surface);
    color: var(--text);
    text-align: center;
    overflow: hidden;
}
.innovation-hero h1 {
    color: var(--text);
    margin-bottom: 12px;
}
.innovation-hero-lead {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
}
.innovation-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin: 52px auto 8px;
    max-width: 1240px;
}
.innovation-pillar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 238px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, .28);
    color: var(--text);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}
.innovation-pillar::before {
    display: none;
}
.innovation-pillar::after {
    display: none;
}
.innovation-pillar h2 {
    position: relative;
    z-index: 1;
    color: var(--text);
    font-size: 20px;
    line-height: 1.35;
    margin: 18px 0 12px;
}
.innovation-pillar p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}
.innovation-pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 28px;
    box-shadow: none;
}

/* ========== Innovation Synergy ========== */
.innovation-synergy { overflow: hidden; }
.synergy-lead { margin-bottom: 38px; }
.synergy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
    column-gap: 28px;
    row-gap: 28px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}
.synergy-side { display: grid; gap: 14px; }
.synergy-side h2 {
    display: flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 2px;
    color: var(--text);
    font-size: 18px;
    text-align: left;
    text-transform: none;
}
.synergy-side--mathon h2 { justify-content: flex-end; text-align: right; }
.synergy-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 80px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, .28);
}
.synergy-side--mathon .synergy-card { flex-direction: row-reverse; text-align: right; }
.synergy-icon,
.synergy-outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary-hover);
    font-weight: 800;
}
.synergy-card h3 {
    margin: 0 0 5px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.3;
}
.synergy-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}
.synergy-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 320px;
}
.synergy-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 51, 0, .28);
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary-hover);
    font-size: 25px;
}
.synergy-label {
    padding: 3px 10px;
    border: 1px solid rgba(255, 51, 0, .28);
    border-radius: 999px;
    color: var(--primary-hover);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.synergy-outcome {
    grid-column: 1 / -1;
    max-width: 650px;
    width: 100%;
    margin: 24px auto 0;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, .38);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    text-align: center;
}
.synergy-outcome-icon { margin-bottom: 12px; }
.synergy-outcome h2 { margin: 0 0 8px; color: var(--text); font-size: 22px; }
.synergy-outcome p { margin: 0; color: var(--text-muted); font-size: 13px; }
.innovation-synergy.light .synergy-side h2,
.innovation-synergy.light .synergy-card h3,
.innovation-synergy.light .synergy-outcome h2 { color: #0f172a; }
.innovation-synergy.light .synergy-card {
    border-color: #dbe3ee;
    background: #f8fafc;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.innovation-synergy.light .synergy-card p,
.innovation-synergy.light .synergy-outcome p { color: #475569; }
.innovation-synergy.light .synergy-outcome {
    border-color: #dbe3ee;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .07);
}
.innovation-synergy.light .synergy-icon,
.innovation-synergy.light .synergy-outcome-icon,
.innovation-synergy.light .synergy-symbol {
    border-color: rgba(255, 51, 0, .24);
    background: var(--primary-soft);
    color: var(--primary);
}
.innovation-synergy.light .synergy-label {
    border-color: rgba(255, 51, 0, .28);
    color: var(--primary);
}

/* ========== Innovation Services ========== */
.innovation-services { text-align: center; }
.innovation-services h2 { color: var(--text); }
.innovation-services-lead { max-width: 620px; margin-bottom: 38px; }
.innovation-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
}
.innovation-service-card {
    min-height: 160px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, .28);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}
.innovation-service-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.innovation-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary-hover);
    font-weight: 800;
}
.innovation-service-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    line-height: 1.3;
}
.innovation-service-card ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 13px;
}
.innovation-service-card li::marker { color: var(--primary); }

/* ========== Sections / Cards base ========== */
.section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.section.alt {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section.light {
    background: #ffffff;
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.section.light h1,
.section.light h2,
.section.light h3,
.section.light h4 { color: #0f172a; }
.section.light .lead { color: #475569; }
.section.light > .container > p,
.section.light .expertise-text p,
.section.light .industry-content p,
.section.light .feature-card p,
.section.light .contact-card p,
.section.light .expertise-list li { color: #475569; }
.section.light .expertise-list li { color: #0f172a; font-weight: 600; }
.section.light .feature-card,
.section.light .contact-card,
.section.light .service-card,
.section.light .brief-item,
.section.light .case-study-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.section.light .feature-card:hover,
.section.light .contact-card:hover,
.section.light .service-card:hover,
.section.light .brief-item:hover,
.section.light .case-study-card:hover {
    background: #f8fafc;
    box-shadow: 0 14px 32px rgba(255, 87, 26, .18);
    border-color: rgba(255, 87, 26, .35);
    transform: translateY(-6px);
}
.js-loaded .section.light .contact-card.animate-on-scroll.is-visible:hover,
.js-loaded .section.light .feature-card.animate-on-scroll.is-visible:hover,
.js-loaded .section.light .service-card.animate-on-scroll.is-visible:hover,
.js-loaded .section.light .brief-item.animate-on-scroll.is-visible:hover,
.js-loaded .section.light .case-study-card.animate-on-scroll.is-visible:hover {
    --ty: -6px;
}
.section.light .case-study-head h3 { color: #0f172a; }
.section.light .case-study-card li { color: #475569; }
.section.light .feature-card h3,
.section.light .contact-card h4,
.section.light .brief-item h4,
.section.light .service-card h5,
.section.light .industry-content h4 { color: #0f172a; }
.section.light .brief-item .accent,
.section.light .brief-item strong { color: var(--primary); }
.section.light .brief-item p,
.section.light .service-card h5 { color: #475569; }
.section.light .industry-content .link-arrow,
.section.light .link-arrow { color: var(--primary); }
.section.light .info-icon,
.section.light .service-icon { color: var(--primary); }
.section.light .industry-item:hover .service-icon,
.section.light .service-card:hover .service-icon { color: var(--primary-hover); }

/* Unified icon color — orange across all icon styles (matches Homepage #ff571a) */
.industry-icon,
.mv-icon,
.value-icon,
.brief-icon,
.info-icon,
.service-icon,
.submenu-icon { color: var(--primary); }
.industry-item:hover .mv-icon,
.value-card:hover .value-icon,
.brief-item:hover .brief-icon,
.service-card:hover .service-icon { color: var(--primary-hover); }
/* Force dark text on services-header (overrides stale .services white-text rules) */
.section.light .services-header h2,
.section.light .service-card h5 { color: #0f172a !important; }
.section.light .services-header p { color: #475569 !important; }
.section.light .service-card { color: #0f172a; }
.lead {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
    color: var(--text-muted);
    font-size: 15px;
}

/* ========== Agile Experience ========== */
.agile-experience {
    text-align: center;
    background: #ffffff;
}
.agile-experience h2 { margin-bottom: 12px; }
.agile-experience-lead {
    max-width: 900px;
    margin-bottom: 34px;
}
.agile-flow {
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.agile-flow img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Feature cards ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.feature-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 18px;
    text-align: center;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .35s, background .35s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 51, 0, .1), transparent 70%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 0, .5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
    background: var(--surface-3);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after  { opacity: 1; }
.feature-card:hover .feature-icon { transform: scale(1.18) rotate(-6deg); }
.feature-card:hover .link-arrow span { transform: translateX(6px); }
.feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: inline-block;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.feature-card h3 { color: var(--text); margin-bottom: 10px; }
.feature-card p {
    color: var(--text-muted);
    font-size: 13px;
    min-height: 48px;
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    transition: gap .25s, color .25s;
}
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover { gap: 10px; color: var(--primary-hover); }
.link-arrow:hover span { transform: translateX(4px); }

/* ========== Mission section (gradient orange) ========== */
.mission {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 51, 0, .18), transparent 60%),
        linear-gradient(180deg, #2a3a52, #1e293b);
}
.mission .container { text-align: center; }
.mission h2 { color: var(--text); }
.mv-block {
    margin: 18px auto 0;
    max-width: 700px;
}
.mv-block h3 { color: var(--primary); font-size: 20px; margin-bottom: 6px; }
.mv-block p { color: var(--text-muted); font-size: 15px; }
.cv-title {
    margin-top: 40px;
    margin-bottom: 24px;
    color: var(--text);
    font-size: 20px;
}
.core-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .core-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}
.value-card {
    background: rgba(30, 32, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform .35s ease, background .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 51, 0, .15), transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}
.value-card:hover {
    transform: translateY(-6px);
    background: rgba(40, 43, 40, 0.6);
    border-color: rgba(255, 87, 26, 0.3);
    box-shadow: 0 30px 60px -15px rgba(255, 87, 26, 0.15);
}
.value-card:hover::before { opacity: 1; }
.value-card:hover .value-icon-wrap { transform: scale(1.05) rotate(-6deg); }

/* Bump value-icon container + icon sizes for Homepage match */
.value-card h4 {
    font-size: 24px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
}
.value-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    font-weight: 300;
}
.value-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: inline-block;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.value-card h4 { color: var(--text); font-size: 17px; }
.value-card p { color: var(--text-muted); font-size: 13px; }

/* ========== Expertise ========== */
.expertise { background: var(--bg); }
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.expertise-text p { color: var(--text-muted); margin-bottom: 18px; }
.expertise-list { list-style: none; margin-bottom: 24px; }
.expertise-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--text);
    font-size: 14px;
}
.expertise-list li::before {
    content: '›';
    position: absolute;
    left: 4px;
    color: var(--primary);
    font-weight: 700;
}
.expertise-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.img-tile {
    aspect-ratio: 4 / 3;
    max-width: 100%;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--surface), var(--surface-3));
    border: 1px solid var(--line);
    background-size: cover;
    background-position: center;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.img-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, .2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s ease;
}
.img-tile:hover {
    --scale: 1.05;
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(255, 51, 0, .25);
}
.img-tile:hover::after { transform: translateX(100%); }
.img-1 { background-image: linear-gradient(135deg, rgba(255,51,0,.2), transparent), radial-gradient(circle at 30% 30%, #ff5c33, #cc2900); }
.img-2 { background-image: linear-gradient(135deg, rgba(255,51,0,.15), transparent), radial-gradient(circle at 70% 30%, #ff7a45, #ff3300); }
.img-3 { background-image: linear-gradient(135deg, rgba(255,51,0,.1), transparent), radial-gradient(circle at 30% 70%, #ff3300, #cc2900); }
.img-4 { background-image: linear-gradient(135deg, rgba(255,51,0,.15), transparent), radial-gradient(circle at 70% 70%, #ff5c33, #cc2900); }

/* ========== Brief ========== */
.brief { text-align: center; }
.brief p.lead { color: var(--text-muted); }
.brief-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.brief-item {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 18px;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: pointer;
}
.brief-item:hover { --ty: -6px; border-color: var(--primary); box-shadow: 0 12px 24px rgba(15, 23, 42, .12); }
.brief-item:hover .brief-icon { transform: scale(1.2) rotate(-8deg); }
.brief-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 12px;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.brief-item h4 { color: var(--text-muted); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.brief-item p { font-size: 16px; color: var(--text); }
.brief-item .accent { color: var(--primary); font-weight: 800; font-size: 28px; }

/* ========== Industries ========== */
.industries {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 56px;
    max-width: 980px;
    margin: 40px auto 0;
}
.industry-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform .3s ease;
    cursor: pointer;
}
.industry-item:hover { transform: translateX(6px); }
.industry-item:hover .industry-icon { transform: scale(1.1) rotate(-8deg); box-shadow: 0 8px 20px rgba(255, 51, 0, .3); }
.industry-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 51, 0, .25);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.industry-content { flex: 1; }
.industry-content h4 { color: var(--text); font-size: 18px; margin-bottom: 6px; }
.industry-content p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
.industry-content .link-arrow { font-size: 13px; }

/* ========== Technologies ========== */
.technologies {
    background: var(--bg);
}
.technologies h2, .technologies h4, .technologies p, .technologies strong { color: var(--text); }
.technologies .lead { color: var(--text-muted); }
.tech-grid {
    display: block;
    margin-top: 40px;
}
.tech-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.tech-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    min-height: 150px;
    text-align: left;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s, border-color .3s, box-shadow .35s;
    cursor: pointer;
}
.section.light .tech-card {
    background: #f8fafc;
    border-color: #dbe3ee;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .07);
}
.section.light .tech-card h4 { color: #0f172a; }
.section.light .tech-card p { color: #475569; }
.section.light .tech-card p strong { color: var(--primary); }
.tech-card:hover {
    --ty: -6px;
    background: var(--surface-3);
    border-color: var(--primary);
    box-shadow: 0 14px 30px rgba(255, 51, 0, .25);
}
.section.light .tech-card:hover {
    background: #ffffff;
    border-color: rgba(255, 51, 0, .45);
    box-shadow: 0 14px 30px rgba(255, 87, 26, .16);
}
.tech-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: #fff7ed;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}
.tech-card h4 { font-size: 18px; margin: 0; }
.tech-card p {
    min-height: 48px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
}
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tech-tags span {
    padding: 4px 9px;
    border: 1px solid #dbe3ee;
    border-radius: 999px;
    background: #eef2f7;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
}
.section.light .tech-card:hover .tech-icon {
    background: var(--primary-soft);
}
.tech-images { display: none; }
.tech-image {
    flex: 1;
    min-height: 180px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
    transition: transform .4s, box-shadow .4s;
}
.tech-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}
.tech-image--1 { background-image: linear-gradient(135deg, rgba(255,51,0,.3), transparent), radial-gradient(circle at 30% 40%, #ff5c33, #cc2900); }
.tech-image--2 { background-image: linear-gradient(135deg, rgba(255,51,0,.25), transparent), radial-gradient(circle at 70% 60%, #ff7a45, #ff3300); }

/* ========== Software Development Services ========== */
.software-services { text-align: center; }
.software-services-lead { max-width: 900px; margin-bottom: 38px; }
.software-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1060px;
    margin: 0 auto;
    text-align: center;
}
.software-service-card {
    min-height: 220px;
    padding: 24px 22px;
    border: 1px solid #dbe3ee;
    border-radius: var(--radius-sm);
    background: #f8fafc;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.software-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: 50%;
    background: #eef2f7;
    color: var(--primary);
    font-size: 23px;
    font-weight: 800;
}
.software-service-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.3;
}
.software-service-card p {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

/* ========== Finance Services ========== */
.finance-services { overflow: hidden; }
.finance-services-header { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.finance-services-header h2 { color: #0f172a; text-align: center; margin-bottom: 14px; }
.finance-services-header p { color: #475569; font-size: 15px; line-height: 1.6; }
.finance-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}
.finance-service-card {
    min-height: 174px;
    padding: 22px;
    border: 1px solid #dbe3ee;
    border-radius: var(--radius-sm);
    background: #f8fafc;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .2s ease, background .2s ease;
}
.section.light .finance-service-card:hover {
    background: #ffffff;
    border-color: rgba(255, 87, 26, .35);
    box-shadow: 0 14px 32px rgba(255, 87, 26, .18);
    transform: translateY(-6px);
}
.section.alt .dt-pillar:hover {
    /* background: #ffffff; */
    border-color: rgba(255, 87, 26, .35);
    box-shadow: 0 14px 32px rgba(255, 87, 26, .18);
    transform: translateY(-6px);
}
.js-loaded .section.light .finance-service-card.animate-on-scroll.is-visible:hover {
    --ty: -6px;
}
.finance-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 51, 0, .24);
    border-radius: var(--radius-sm);
    background: #fff7ed;
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    transition: transform .3s ease, box-shadow .3s ease;
}
.finance-service-card:hover .finance-service-icon {
    background: var(--primary-soft);
    transform: scale(1.08);
}
.finance-service-card h3 { margin: 0 0 12px; color: #0f172a; font-size: 18px; }
.finance-service-card h3 a { color: inherit; }
.finance-service-card p { margin: 0; color: #475569; font-size: 14px; line-height: 1.55; }

/* ========== Finance Domain Tabs ========== */
.finance-domain { text-align: center; }
.finance-domain-lead { max-width: 820px; margin-bottom: 38px; }
.finance-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    max-width: 980px;
    margin: 0 auto 28px;
    border-bottom: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}
.finance-tab {
    flex: 0 0 auto;
    padding: 12px 14px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--text-subtle);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
.finance-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    color: currentColor;
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
}
.finance-tab:hover,
.finance-tab.is-active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.finance-panels { max-width: 1120px; margin: 0 auto; }
.finance-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    text-align: left;
}
.finance-panel[hidden] { display: none; }
.finance-domain-card {
    min-height: 240px;
    padding: 28px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
}
.finance-domain-card h3 {
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-size: 20px;
}
.finance-domain-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}
.finance-domain-card li::marker { color: var(--primary); }

/* ========== Industries page — Case Studies ========== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1180px;
    margin: 40px auto 0;
}
.case-study-card {
    padding: 26px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease, background .2s ease, border-color .2s ease;
}
.case-study-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.case-study-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 20px;
}
.case-study-head h3 { margin: 0; font-size: 18px; }
.case-study-head h3 a { color: inherit; }
.case-study-card .tech-tags { margin-bottom: 14px; }
.case-study-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}
.case-study-card li { position: relative; padding-left: 16px; }
.case-study-card li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
@media (max-width: 1024px) {
    .case-studies-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .case-studies-grid { grid-template-columns: 1fr; }
}

/* ========== Industries detail — Areas of Expertise ========== */
.expertise-row-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1040px;
    margin: 40px auto 0;
}
.expertise-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.expertise-row:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(255, 87, 26, .18); }
.expertise-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 16px;
}
.expertise-row-title { flex: 1; font-size: 14px; font-weight: 700; color: #0f172a; }
.expertise-row-chevron { color: #94a3b8; font-size: 12px; }

/* ========== Industries detail — Technologies table ========== */
.tech-table {
    max-width: 1040px;
    margin: 40px auto 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
}
.tech-table-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
}
.tech-table-row:last-child { border-bottom: none; }
.tech-table-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}
.tech-table-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 14px;
}

/* ========== Industries detail — Solution steps ========== */
.solution-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.solution-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 620px;
    margin: 36px auto 0;
}
.step-card {
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    border-top: 3px solid var(--primary);
    background: var(--surface-2);
    text-align: left;
}
.step-card--2 { border-top-color: var(--blue); }
.step-card--3 { border-top-color: var(--green); }
.step-card--4 { border-top-color: var(--amber); }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}
.step-card--2 .step-number { background: rgba(56, 189, 248, .16); color: var(--blue); }
.step-card--3 .step-number { background: rgba(34, 197, 94, .16); color: var(--green); }
.step-card--4 .step-number { background: rgba(245, 158, 11, .16); color: var(--amber); }
.step-card h4 { margin: 0 0 8px; font-size: 14px; }
.step-card ul { margin: 0; padding-left: 16px; color: var(--text-muted); font-size: 12.5px; line-height: 1.5; }
.step-card li { margin-bottom: 4px; }
@media (max-width: 1024px) {
    .expertise-row-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .expertise-row-grid { grid-template-columns: 1fr; }
    .tech-table-row { grid-template-columns: 1fr; }
    .solution-steps { grid-template-columns: 1fr; }
}

/* ========== How We Work ========== */
.how-work { text-align: center; }
.how-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    margin: 40px auto 0;
}
.how-work-card {
    min-height: 200px;
    padding: 24px 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--surface-2);
    color: var(--text);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: border-color .3s, box-shadow .3s;
}
.how-work-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 22px rgba(15, 23, 42, .16);
}
.how-work-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    background: var(--surface);
    color: var(--primary);
    font-size: 22px;
}
.how-work-step {
    display: block;
    margin-top: 16px;
    color: var(--text-subtle);
    font-size: 11px;
    font-weight: 700;
}
.how-work-card h3 { margin: 3px 0 14px; color: var(--text); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.how-work-card p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.55; }

/* ========== Services ========== */
.services {
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 51, 0, .14), transparent 50%),
        var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--text);
    position: relative;
    overflow: hidden;
}
.services h2, .services h5, .services p { color: var(--text); }
.services .lead { color: var(--text-muted); }
.services-header { max-width: 50%; margin-bottom: 50px; }
.services-header h2 { text-align: left; margin-bottom: 14px; line-height: 1.2; }
.services-header p { color: var(--text-muted); font-size: 15px; }
.services-flow { display: flex; align-items: stretch; gap: 10px; }
.services-col { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.services-col.center-y { justify-content: center; }
.service-card {
    background: var(--surface-2);
    border: 1px solid rgba(203, 213, 225, .22);
    border-radius: var(--radius-md);
    padding: 22px 12px;
    color: var(--text);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
    transition: border-color .3s;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 92px;
}
.service-card:hover {
    border-color: rgba(255, 51, 0, .55);
    transform: none !important;
}
.service-icon {
    font-size: 30px;
    color: var(--primary);
    display: inline-block;
}
.service-card h5 { font-size: 13px; font-weight: 700; margin: 0; color: var(--text); text-align: center; line-height: 1.3; }
.services-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-subtle);
    font-size: 32px;
    flex-shrink: 0;
    font-weight: 700;
}
.services-explore {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* ========== Facility / Video ========== */
.facility { text-align: center; }
.video-wrap {
    max-width: 900px;
    margin: 30px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    background: #000;
    aspect-ratio: 16 / 9;
}
.video-wrap video { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ========== Contact ========== */
.contact { text-align: center; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    margin-top: 30px;
}
.contact-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .35s, background .3s;
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 0, .06), transparent);
    transition: left .6s ease;
    pointer-events: none;
}
.contact-card:hover { border-color: var(--primary); box-shadow: 0 12px 28px rgba(255, 51, 0, .15); background: var(--surface-3); }
.contact-card:hover::before { left: 100%; }
.js-loaded .contact-card.animate-on-scroll.is-visible:hover { --ty: -6px; }
.contact-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 15px; }
.contact-card p { font-size: 14px; color: var(--text); margin-bottom: 4px; }

/* ========== Download ========== */
.download {
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 51, 0, .18), transparent 60%),
        linear-gradient(180deg, #2a3a52, #1e293b);
    color: var(--text);
}
.download h2 { color: var(--text); }
.download-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 50px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}
.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 30px;
}
.footer-inner > .footer-col:not(:last-child) { display: none; }
.footer-brand { display: block; }
.footer-inner > .footer-col:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
    text-align: left;
}
.footer-inner > .footer-col:last-child ul { list-style: none; }
.footer-inner > .footer-col:last-child .btn { margin-top: 12px; }
.footer-brand p { margin: 12px 0 16px; line-height: 1.6; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .25s;
}
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.footer-col ul { list-style: none; }
.footer-col li { padding: 3px 0; color: var(--text-muted); font-size: 13px; }
.footer-col a { color: var(--text-muted); font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-subtle);
    background: var(--surface);
}
.footer-bottom a { color: var(--text-muted); }

/* ========== Animations ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatA { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-12px); } }
@keyframes floatB { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-8px,10px); } }

.hero h1           { animation: fadeInUp .8s ease-out .1s both; }
.hero .hero-text   { animation: fadeInUp .8s ease-out .3s both; }
.hero .hero-stats  { animation: fadeInUp .8s ease-out .5s both; }

.animate-on-scroll {
    --tx: 0px;
    --ty: 30px;
    --scale: 1;
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) scale(var(--scale));
    transition: opacity .7s ease-out, transform .7s ease-out;
}
.js-loaded .animate-on-scroll { opacity: 0; }
.js-loaded .animate-on-scroll.is-visible {
    --tx: 0px;
    --ty: 0px;
    --scale: 1;
    opacity: 1;
}
.js-loaded .animate-on-scroll.fade { --tx: 0px; --ty: 0px; }
.js-loaded .animate-on-scroll.from-left  { --tx: -40px; }
.js-loaded .animate-on-scroll.from-right { --tx: 40px; }
.js-loaded .animate-on-scroll.zoom { --scale: 0.94; }
.js-loaded .animate-on-scroll.is-visible { --tx: 0px; --ty: 0px; --scale: 1; }

.animate-on-scroll[data-delay="1"] { transition-delay: .08s; }
.animate-on-scroll[data-delay="2"] { transition-delay: .16s; }
.animate-on-scroll[data-delay="3"] { transition-delay: .24s; }
.animate-on-scroll[data-delay="4"] { transition-delay: .32s; }
.animate-on-scroll[data-delay="5"] { transition-delay: .40s; }
.animate-on-scroll[data-delay="6"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .js-loaded .animate-on-scroll { opacity: 1; transform: none; }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .main-nav ul { gap: 28px; }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .services-flow { flex-wrap: wrap; justify-content: center; gap: 14px; }
    .services-col { flex: 0 0 calc(33% - 14px); }
    .services-arrow { display: none; }
    .services-header { max-width: 100%; }
    .footer-inner { grid-template-columns: repeat(3, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    :root { --container-pad: 20px; }
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    .header-inner { gap: 10px; }
    .logo-img { height: 34px; }
    .site-header > .container > .btn-outline { display: none; }
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        margin-left: auto;
        padding: 0;
        border: 1px solid var(--primary);
        border-radius: var(--radius-sm);
        background: transparent;
        color: var(--primary);
        font-size: 0;
        line-height: 1;
        cursor: pointer;
    }
    .mobile-menu-toggle::before {
        content: '\2630';
        font-size: 18px;
    }
    .mobile-nav-open .mobile-menu-toggle::before { content: '\2715'; }
    .main-nav { display: none; }
    .mobile-nav-open .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px var(--container-pad) 14px;
        background: #fff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
    }
    .mobile-nav-open .main-nav ul { display: block; }
    .mobile-nav-open .main-nav > ul > li { border-bottom: 1px solid #e2e8f0; }
    .mobile-nav-open .main-nav > ul > li > a { display: flex; padding: 12px 0; border-bottom: 0; }
    .mobile-contact-item {
        display: block;
        margin-top: 14px;
        border-bottom: none !important;
    }
    .mobile-contact-item .btn {
        width: 100%;
        color: #fff;
    }
    .mobile-nav-open .main-nav li.has-dropdown.dropdown-open > .submenu,
    .mobile-nav-open .main-nav li.has-dropdown:focus-within > .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 8px 14px;
        min-width: 0;
    }
    .mobile-nav-open .main-nav .submenu::before { display: none; }
    .mobile-nav-open .main-nav .submenu a { padding: 9px 0; border-bottom: 0; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .core-values { grid-template-columns: 1fr; }
    .expertise-grid { grid-template-columns: 1fr; }
    .brief-stats { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; gap: 28px; }
    .innovation-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
    .innovation-pillar { padding: 24px; }
    .innovation-pillar h2 { font-size: 16px; }
    .innovation-pillar-icon { width: 48px; height: 48px; font-size: 23px; }
    .synergy-layout { grid-template-columns: 1fr; gap: 24px; }
    .synergy-side--mathon h2 { justify-content: flex-start; text-align: left; }
    .synergy-side--mathon .synergy-card { flex-direction: row; text-align: left; }
    .synergy-center { order: 2; min-height: auto; flex-direction: row; }
    .synergy-side--mathon { order: 3; }
    .synergy-outcome { order: 4; grid-column: auto; margin-top: 0; padding: 24px 20px; }
    .synergy-outcome h2 { font-size: 20px; }
    .innovation-services-grid { grid-template-columns: 1fr; gap: 14px; }
    .innovation-service-card { min-height: 0; padding: 20px; }
    .software-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .software-service-card { min-height: 200px; padding: 22px 18px; }
    .finance-services-grid { gap: 14px; }
    .finance-service-card { min-height: 160px; padding: 20px; }
    .finance-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .finance-domain-card { min-height: 210px; padding: 22px; }
    .finance-tabs { justify-content: flex-start; padding: 0 8px; margin-left: -8px; margin-right: -8px; }
    .finance-tab { padding: 13px 12px; font-size: 14px; }
    .how-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
    .how-work-card { min-height: 190px; padding: 22px 18px; }
    .industry-item { transform: none; }
    .industry-item:hover { transform: none; }
    .tech-grid { grid-template-columns: 1fr; }
    .tech-cards { grid-template-columns: repeat(2, 1fr); }
    .tech-image { min-height: 160px; }
    .services-flow {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .services-col { display: contents; }
    .service-card { padding: 16px 8px; min-height: 76px; }
    .service-card h5 { font-size: 12px; }
    .service-icon { font-size: 26px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 30px; }
    .section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .feature-grid { grid-template-columns: 1fr; }
    .innovation-pillars { grid-template-columns: 1fr; max-width: 280px; }
    .software-services-grid { grid-template-columns: 1fr; }
    .finance-services-grid { grid-template-columns: 1fr; }
    .finance-panel { grid-template-columns: 1fr; }
    .finance-domain-card { min-height: 0; padding: 20px; }
    .how-work-grid { grid-template-columns: 1fr; }
    .tech-cards { grid-template-columns: 1fr; }
    .services-flow { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
}
