:root {
    --blue: #374dce;
    --blue-700: #2536a8;
    --navy: #121629;
    --ink: #172033;
    --muted: #667085;
    --line: rgba(18, 22, 41, 0.12);
    --line-dark: rgba(255, 255, 255, 0.16);
    --paper: #ffffff;
    --soft: #f2f2f2;
    --soft-blue: #eef2ff;
    --green: #087f5b;
    --amber: #b76e21;
    --cyan: #0f766e;
    --sky: #0ea5e9;
    --mint: #10b981;
    --coral: #f97316;
    --rose: #e11d48;
    --violet: #7c3aed;
    --shadow: 0 18px 46px rgba(18, 22, 41, 0.1);
    --shadow-strong: 0 30px 80px rgba(18, 22, 41, 0.18);
    --tilt-x: 0px;
    --tilt-y: 0px;
    --service-x: 50%;
    --service-y: 50%;
    --service-rx: 0deg;
    --service-ry: 0deg;
    --radius: 8px;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: linear-gradient(115deg, rgba(55, 77, 206, 0.06) 0 18%, transparent 18% 100%), linear-gradient(245deg, rgba(16, 185, 129, 0.05) 0 14%, transparent 14% 100%), linear-gradient(180deg, #ffffff 0%, #f6f8fc 48%, #ffffff 100%), repeating-linear-gradient(90deg, rgba(18, 22, 41, 0.035) 0 1px, transparent 1px 120px);
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 0 34%, rgba(14, 165, 233, 0.08) 34% 35%, transparent 35% 100%), linear-gradient(22deg, transparent 0 66%, rgba(249, 115, 22, 0.06) 66% 67%, transparent 67% 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    font-size: 4.7rem;
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 span {
    display: block;
}

h1 span:first-child {
    color: var(--navy);
}

h1 span:last-child {
    position: relative;
    isolation: isolate;
    width: fit-content;
    margin-top: 10px;
    padding: 0.08em 0.22em 0.12em;
    border: 1px solid rgba(55, 77, 206, 0.18);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(55, 77, 206, 0.14), rgba(249, 115, 22, 0.08)), rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 30px rgba(18, 22, 41, 0.08);
    color: var(--cyan);
    animation: heroTagFloat 3.6s ease-in-out infinite;
}

h1 span:last-child::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.55) 50%, transparent 66%);
    transform: translateX(-120%);
    animation: heroTagSweep 4.8s ease-in-out infinite;
    pointer-events: none;
}

h1 span:last-child::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

h1 span:last-child {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

h2 {
    font-size: 2.7rem;
    line-height: 1.04;
    font-weight: 800;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 800;
}

ul {
    margin: 0;
    padding: 0;
}

[id] {
    scroll-margin-top: 104px;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 12px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(18, 22, 41, 0.06);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 24px;
}

.brand img {
    width: 168px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a,
.site-nav summary,
.footer-nav a {
    position: relative;
    color: #4d5870;
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.18s ease;
}

.site-nav a::after,
.site-nav summary::after,
.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav summary:hover,
.site-nav summary:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--navy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav summary:hover::after,
.site-nav summary:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-group {
    position: relative;
}

.nav-group>summary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-right: 16px;
    list-style: none;
    cursor: pointer;
}

.nav-group>summary::-webkit-details-marker {
    display: none;
}

.nav-group>summary::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.18s ease;
}

.nav-group[open]>summary::before,
.nav-group:hover>summary::before,
.nav-group:focus-within>summary::before {
    transform: translateY(-30%) rotate(225deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: -12px;
    z-index: 12;
    display: grid;
    gap: 0;
    min-width: 236px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(18, 22, 41, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-group[open]>.nav-submenu,
.nav-group:hover>.nav-submenu,
.nav-group:focus-within>.nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-submenu a {
    display: block;
    padding: 11px 10px;
    border-radius: 8px;
    color: #526078;
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
    background: rgba(55, 77, 206, 0.08);
    color: var(--navy);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.menu-icon {
    display: inline-grid;
    gap: 4px;
}

.menu-icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
}

.menu-label {
    font-weight: 800;
    font-size: 0.9rem;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    padding: 84px 0 56px;
    background: linear-gradient(132deg, rgba(55, 77, 206, 0.14) 0 16%, transparent 16% 100%), linear-gradient(38deg, transparent 0 64%, rgba(16, 185, 129, 0.12) 64% 74%, transparent 74% 100%), linear-gradient(156deg, transparent 0 45%, rgba(249, 115, 22, 0.08) 45% 52%, transparent 52% 100%), linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(242, 245, 252, 0.92));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 22, 41, 0.045) 1px, transparent 1px), linear-gradient(180deg, rgba(18, 22, 41, 0.045) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 90%, transparent 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% 8% 30%;
    height: 130px;
    background: linear-gradient(90deg, transparent, rgba(55, 77, 206, 0.15), rgba(14, 165, 233, 0.12), transparent);
    transform: rotate(-7deg);
    pointer-events: none;
}

.hero-bg,
.hero-layout {
    position: relative;
    z-index: 1;
}

.hero-layout {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 28px 0;
}

.eyebrow,
.section-label,
.panel-label {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 9px 12px;
    border: 1px solid rgba(55, 77, 206, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 28px rgba(18, 22, 41, 0.06);
}

.eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.lead {
    max-width: 690px;
    margin-top: 22px;
    color: #46536b;
    font-size: 1.18rem;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-700));
    color: #fff;
    box-shadow: 0 18px 34px rgba(55, 77, 206, 0.22);
}

.btn-primary.btn-contrast {
    z-index: 0;
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, #0f2d7a 0%, #1d4ed8 58%, #0f766e 100%);
    color: #fff;
    box-shadow: 0 16px 36px rgba(15, 45, 122, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.16);
    animation: ctaBreath 2.8s ease-in-out infinite;
}

.btn-primary.btn-contrast .btn-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.btn-primary.btn-contrast::before {
    content: "";
    position: absolute;
    inset: -25% auto -25% -50%;
    width: 38%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg) translateX(0);
    animation: ctaShine 3.8s ease-in-out infinite;
    pointer-events: none;
}

.btn-primary.btn-contrast>* {
    position: relative;
    z-index: 1;
}

.btn-primary.btn-contrast:hover,
.btn-primary.btn-contrast:focus-visible {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 24px 48px rgba(15, 45, 122, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-primary.btn-contrast:hover::before,
.btn-primary.btn-contrast:focus-visible::before {
    animation-duration: 1.8s;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: linear-gradient(135deg, #0f2d7a 0%, #1d4ed8 60%, #0f766e 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(15, 45, 122, 0.28), 0 0 0 1px rgba(55, 77, 206, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.92);
    transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    animation: backToTopPulse 2.8s ease-in-out infinite;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 46px rgba(15, 45, 122, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.back-to-top-icon {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.back-to-top-icon img {
    width: 18px;
    height: 18px;
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.84);
    color: var(--navy);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(55, 77, 206, 0.28);
    background: #fff;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(620px, 100%);
    margin-top: 34px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.86)), linear-gradient(135deg, rgba(55, 77, 206, 0.12), transparent);
    box-shadow: var(--shadow);
}

.trust-row div {
    padding: 18px;
    border-right: 1px solid var(--line);
}

.trust-row div:last-child {
    border-right: 0;
}

.trust-row strong {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
}

.trust-row span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.45;
}

.hero-partners {
    width: min(720px, 100%);
    margin-top: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(18, 22, 41, 0.06);
}

.hero-partners p {
    color: #526078;
    font-size: 0.94rem;
    line-height: 1.6;
}

.client-trust-section {
    padding: 100px 0;
    background: #fafafa;
}

.client-trust-head {
    max-width: 920px;
}

.client-trust-head p {
    max-width: 940px;
}

.client-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 48px;
}

.client-marquee:hover .client-marquee-track,
.client-marquee:focus-within .client-marquee-track {
    animation-play-state: paused;
}

.client-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: clientMarqueeLeft 44s linear infinite;
}

.client-marquee-set {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 20px;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 100px;
    flex: 0 0 auto;
}

.client-logo img {
    display: block;
    width: auto;
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: transform 300ms ease;
}

.client-logo:hover img,
.client-logo:focus-within img {
    transform: scale(1.04);
}

.client-closing {
    margin-top: 40px;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
}

.client-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.client-cta {
    min-width: min(100%, 320px);
}

@keyframes clientMarqueeLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.partner-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.partner-strip img {
    width: 100%;
    height: 54px;
    padding: 10px;
    object-fit: contain;
    border: 1px solid rgba(18, 22, 41, 0.08);
    border-radius: var(--radius);
    background: #fff;
    filter: saturate(0.88);
}

.hero-system {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(520px, 100%);
    pointer-events: none;
    transform: translate3d(var(--tilt-x), var(--tilt-y), 0);
    transition: transform 0.25s ease;
}

.system-stage {
    position: relative;
    height: 390px;
}

.system-card-main,
.hero-panel,
.map-item {
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(18, 22, 41, 0.94), rgba(31, 42, 74, 0.9)), linear-gradient(90deg, rgba(55, 77, 206, 0.2), rgba(16, 185, 129, 0.15));
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.system-card-main {
    position: absolute;
    top: 72px;
    right: 46px;
    width: 310px;
    padding: 22px;
    overflow: hidden;
}

.system-card-main::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -38px;
    width: 140px;
    height: 140px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 18px 18px;
    transform: rotate(12deg);
    opacity: 0.55;
}

.system-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.system-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    animation: breathe 4.4s ease-in-out infinite;
}

.system-brand p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.34rem;
    font-weight: 800;
}

.system-brand span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
}

.system-pulse {
    height: 92px;
    margin-top: 22px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(180deg, transparent 0 46%, rgba(55, 77, 206, 0.88) 47% 53%, transparent 54%), linear-gradient(90deg, rgba(55, 77, 206, 0.18), rgba(8, 127, 91, 0.28));
    background-size: 28px 100%, 100% 100%, 100% 100%;
    animation: scan 4.8s linear infinite;
}

.system-map {
    position: absolute;
    inset: 0;
}

.map-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 178px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 255, 0.9)), linear-gradient(90deg, rgba(55, 77, 206, 0.08), transparent);
    color: var(--navy);
    border-color: var(--line);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.map-item p {
    font-weight: 800;
    font-size: 0.9rem;
}

.map-icon {
    width: 26px;
    height: 26px;
    padding: 4px;
    border-radius: var(--radius);
    background: var(--soft-blue);
}

.item-health {
    top: 0;
    right: 94px;
}

.item-erp {
    top: 204px;
    right: 0;
    animation-delay: -1.2s;
}

.item-api {
    left: 18px;
    bottom: 78px;
    animation-delay: -2.2s;
}

.item-data {
    right: 64px;
    bottom: 0;
    animation-delay: -3s;
}

.hero-panel {
    position: relative;
    width: 100%;
    margin-top: 16px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.92)), linear-gradient(120deg, rgba(16, 185, 129, 0.09), transparent);
    color: var(--ink);
    border-color: var(--line);
}

.hero-panel ul {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.hero-panel li {
    list-style: none;
    position: relative;
    padding-left: 18px;
    color: #4e5a72;
    line-height: 1.55;
}

.hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.motion-line,
.motion-node {
    position: absolute;
    pointer-events: none;
}

.motion-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(55, 77, 206, 0.42), rgba(16, 185, 129, 0.32), transparent);
    animation: drift 8s linear infinite;
}

.motion-line-one {
    top: 31%;
    left: 8%;
    width: 42vw;
}

.motion-line-two {
    top: 69%;
    right: 3%;
    width: 36vw;
    animation-delay: -3s;
}

.motion-node {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 10px rgba(55, 77, 206, 0.11);
    animation: nodePulse 3s ease-in-out infinite;
}

.motion-node-one {
    top: 26%;
    right: 22%;
}

.motion-node-two {
    bottom: 22%;
    left: 16%;
    background: var(--green);
    box-shadow: 0 0 0 10px rgba(8, 127, 91, 0.1);
    animation-delay: -1s;
}

.section {
    padding: 96px 0;
}

.intro-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(120deg, rgba(55, 77, 206, 0.18) 0 22%, transparent 22% 100%), linear-gradient(240deg, rgba(16, 185, 129, 0.14) 0 18%, transparent 18% 100%), var(--navy);
    color: #fff;
}

.problem-section {
    position: relative;
    overflow: hidden;
    padding-top: 84px;
    padding-bottom: 84px;
}

.problem-section .section-head {
    max-width: 760px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.problem-card {
    position: relative;
    padding: 26px 22px 24px;
    border: 1px solid rgba(55, 77, 206, 0.14);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)), linear-gradient(135deg, rgba(55, 77, 206, 0.06), rgba(16, 185, 129, 0.05));
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
}

.problem-card::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral));
}

.problem-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--blue);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
}

.problem-card h3 {
    margin-top: 8px;
    color: var(--navy);
    font-size: 1.18rem;
}

.problem-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 52px;
}

.intro-copy h2,
.section-head h2,
.solution-copy h2,
.process-copy h2,
.contact-card h2 {
    margin-top: 12px;
}

.intro-text {
    display: grid;
    gap: 18px;
}

.intro-text p,
.section-head>p,
.solution-copy p,
.process-copy p,
.contact-card p,
.service-card p,
.product-stack p,
.proof-card p,
.timeline p,
.footer-brand p {
    color: var(--muted);
    line-height: 1.75;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.04rem;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
}

.section-head.centered {
    display: grid;
    justify-items: center;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-head>div {
    max-width: 680px;
}

.section-head>p,
.section-head.centered p:last-child {
    max-width: 470px;
}

.services-section {
    position: relative;
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.05) 0 18%, transparent 18% 100%), linear-gradient(45deg, transparent 0 74%, rgba(249, 115, 22, 0.06) 74% 84%, transparent 84% 100%), linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%), repeating-linear-gradient(90deg, rgba(18, 22, 41, 0.035) 0 1px, transparent 1px 120px);
}

.section-divider {
    position: relative;
    overflow: hidden;
    height: 78px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 248, 252, 0.85));
}

.section-divider span {
    position: absolute;
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--mint), transparent);
    opacity: 0.52;
}

.section-divider span:nth-child(1) {
    left: 8%;
    top: 24px;
    width: 34%;
}

.section-divider span:nth-child(2) {
    right: 10%;
    top: 39px;
    width: 26%;
    background: linear-gradient(90deg, transparent, var(--coral), var(--sky), transparent);
}

.section-divider span:nth-child(3) {
    left: 38%;
    top: 56px;
    width: 18%;
    background: linear-gradient(90deg, transparent, var(--violet), transparent);
}

.divider-products {
    background: linear-gradient(180deg, #f5f8ff, #fff);
}

.divider-proof {
    background: linear-gradient(180deg, #fff, #f7f9fd);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    perspective: 1200px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    perspective: 1200px;
    margin-top: 28px;
}

.product-stack article,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
}

.service-card {
    --accent: var(--blue);
    --accent-soft: rgba(55, 77, 206, 0.09);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 22px;
    min-height: 294px;
    padding: 34px 30px;
    border: 1px solid color-mix(in srgb, var(--accent), white 76%);
    border-radius: 20px 8px 20px 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 253, 255, 0.72));
    box-shadow: 0 16px 34px rgba(18, 22, 41, 0.07);
    backdrop-filter: blur(12px);
    transform: rotateX(var(--service-rx)) rotateY(var(--service-ry));
    transform-style: preserve-3d;
    transition: transform 0.16s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card.compact {
    min-height: 184px;
    padding: 28px 24px;
}

.service-card.compact p {
    display: none;
}

.service-card.compact h3 {
    margin-top: 8px;
}

.why-card {
    min-height: 288px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96));
    border-color: rgba(55, 77, 206, 0.12);
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
    transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.why-card::before {
    background: rgba(55, 77, 206, 0.1);
    border-color: rgba(55, 77, 206, 0.12);
    opacity: 0.7;
}

.why-card::after {
    opacity: 0.12;
    background: linear-gradient(90deg, rgba(18, 22, 41, 0.08) 1px, transparent 1px), linear-gradient(180deg, rgba(18, 22, 41, 0.08) 1px, transparent 1px);
}

.why-card .service-icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(55, 77, 206, 0.08));
    border-color: rgba(55, 77, 206, 0.14);
}

.why-card h3,
.why-card p {
    color: #121629;
}

.why-card p {
    color: #556174;
}

.why-card:hover,
.why-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(55, 77, 206, 0.18);
    background: linear-gradient(180deg, #e9f1ff, #dce8ff);
    box-shadow: 0 24px 48px rgba(55, 77, 206, 0.18);
}

.why-card:hover::before,
.why-card:focus-within::before {
    background: rgba(55, 77, 206, 0.14);
    border-color: rgba(55, 77, 206, 0.16);
}

.why-card:hover::after,
.why-card:focus-within::after {
    opacity: 0.12;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
}

.why-card:hover .service-icon,
.why-card:focus-within .service-icon {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(55, 77, 206, 0.16);
    filter: brightness(0) saturate(100%) invert(14%) sepia(19%) saturate(2585%) hue-rotate(202deg) brightness(96%) contrast(97%);
}

.why-card:hover h3,
.why-card:hover p,
.why-card:focus-within h3,
.why-card:focus-within p {
    color: #121629;
}

.why-card:hover p,
.why-card:focus-within p {
    opacity: 0.82;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 30px;
    width: 62px;
    height: 62px;
    border: 1px solid color-mix(in srgb, var(--accent), white 68%);
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent), white 88%);
    transform: scale(0.82);
    transition: transform 0.24s ease, opacity 0.24s ease;
    opacity: 0.5;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -16px;
    width: 150px;
    height: 150px;
    background: linear-gradient(90deg, rgba(18, 22, 41, 0.08) 1px, transparent 1px), linear-gradient(180deg, rgba(18, 22, 41, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.12;
    transform: rotate(14deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:nth-child(1) {
    --accent: var(--blue);
    --accent-soft: rgba(55, 77, 206, 0.1);
}

.service-card:nth-child(2) {
    --accent: var(--mint);
    --accent-soft: rgba(16, 185, 129, 0.12);
}

.service-card:nth-child(3) {
    --accent: var(--sky);
    --accent-soft: rgba(14, 165, 233, 0.12);
}

.service-card:nth-child(4) {
    --accent: var(--coral);
    --accent-soft: rgba(249, 115, 22, 0.12);
}

.service-card:nth-child(5) {
    --accent: var(--violet);
    --accent-soft: rgba(124, 58, 237, 0.1);
}

.service-card:nth-child(6) {
    --accent: var(--rose);
    --accent-soft: rgba(225, 29, 72, 0.1);
}

.service-card:hover {
    transform: translateY(-5px) rotateX(var(--service-rx)) rotateY(var(--service-ry));
    background: radial-gradient(circle at var(--service-x) var(--service-y), color-mix(in srgb, var(--accent), transparent 86%), transparent 30%), rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 54px rgba(18, 22, 41, 0.12);
    border-color: color-mix(in srgb, var(--accent), white 42%);
}

.service-card:hover::before {
    transform: scale(1);
    opacity: 0.86;
}

.service-card:hover::after {
    opacity: 0.28;
    transform: rotate(12deg) translate(-5px, 5px);
}

.service-card h3 {
    grid-column: 2;
    margin-top: 0;
    max-width: 18ch;
    align-self: center;
}

.service-card p {
    grid-column: 1 / -1;
    max-width: 32ch;
    margin-top: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.btn-icon {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: var(--soft-blue);
    border: 1px solid rgba(55, 77, 206, 0.14);
}

.btn-icon::before,
.btn-icon::after {
    content: "";
    position: absolute;
    display: block;
}

.icon-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
}

.icon-arrow::before {
    left: 6px;
    top: 10px;
    width: 10px;
    height: 2px;
    background: #fff;
}

.icon-arrow::after {
    right: 6px;
    top: 7px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.service-icon,
.content-icon {
    grid-column: 1;
    width: 46px;
    height: 46px;
    padding: 10px;
    object-fit: contain;
    border: 1px solid color-mix(in srgb, var(--accent, var(--blue)), white 72%);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), var(--accent-soft, var(--soft-blue))), var(--soft-blue);
    box-shadow: inset 0 -8px 18px rgba(255, 255, 255, 0.44);
}

.content-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.solution-section {
    color: var(--ink);
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.07) 0 18%, transparent 18% 100%), linear-gradient(42deg, transparent 0 68%, rgba(16, 185, 129, 0.07) 68% 78%, transparent 78% 100%), linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
}

.solution-copy {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.solution-copy p {
    margin-top: 16px;
    color: var(--muted);
}

.product-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-stack article {
    --accent: var(--blue);
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 30px 24px 24px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent), white 82%) 0 6px, transparent 6px), linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 251, 255, 0.96));
    border: 1px solid color-mix(in srgb, var(--accent), white 74%);
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(18, 22, 41, 0.055);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.product-stack article::before {
    content: "SaaS";
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: color-mix(in srgb, var(--accent), black 20%);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.product-stack article:nth-child(2) {
    --accent: var(--mint);
}

.product-stack article:nth-child(3) {
    --accent: var(--sky);
}

.product-stack article:nth-child(4) {
    --accent: var(--coral);
}

.product-stack article:nth-child(5) {
    --accent: var(--violet);
}

.product-stack article:nth-child(6) {
    --accent: var(--rose);
}

.product-stack article:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: color-mix(in srgb, var(--accent), white 42%);
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent), white 76%) 0 6px, transparent 6px), linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 92%), transparent 42%), linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 251, 255, 0.98));
    box-shadow: 0 24px 52px rgba(18, 22, 41, 0.12);
}

.product-stack .content-icon {
    border-color: color-mix(in srgb, var(--accent), white 70%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), color-mix(in srgb, var(--accent), white 88%));
    border-radius: 999px;
}

.product-stack h3 {
    margin-top: 12px;
    color: var(--navy);
    font-size: 1.55rem;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(18, 22, 41, 0.08);
}

.product-stack p {
    margin-top: 12px;
    color: var(--muted);
    max-width: 32ch;
}

.product-stack span {
    display: inline-flex;
    margin-top: 4px;
    padding: 7px 10px;
    border-radius: 4px;
    background: transparent;
    color: color-mix(in srgb, var(--accent), black 10%);
    font-size: 0.72rem;
}

.product-stack ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.product-stack li {
    list-style: none;
    padding: 7px 10px;
    border: 1px solid rgba(18, 22, 41, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #536078;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.proof-card {
    --accent: var(--blue);
    position: relative;
    padding: 28px 24px;
    overflow: hidden;
    min-height: 250px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.9));
    box-shadow: inset 0 0 0 1px rgba(18, 22, 41, 0.08), 0 16px 36px rgba(18, 22, 41, 0.07);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.proof-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: color-mix(in srgb, var(--accent), white 18%);
}

.proof-card::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.5;
}

.proof-card:nth-child(2) {
    --accent: var(--mint);
}

.proof-card:nth-child(3) {
    --accent: var(--coral);
}

.proof-card:nth-child(4) {
    --accent: var(--sky);
}

.proof-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent), white 58%);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 93%), transparent 46%), linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
    box-shadow: var(--shadow);
}

.proof-card strong {
    position: relative;
    z-index: 1;
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--accent);
    font-size: 3rem;
    line-height: 1;
    margin-top: 18px;
}

.proof-card span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 10px;
    color: var(--navy);
    font-weight: 800;
}

.proof-card p {
    position: relative;
    z-index: 1;
    margin-top: 12px;
}

.proof-card .content-icon {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
}

.tech-section {
    position: relative;
    overflow: hidden;
    padding-top: 84px;
    padding-bottom: 84px;
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.04) 0 16%, transparent 16% 100%), linear-gradient(45deg, transparent 0 74%, rgba(16, 185, 129, 0.05) 74% 86%, transparent 86% 100%), linear-gradient(180deg, #fff, #f8fbff);
}

.tech-section .section-head {
    max-width: 780px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tech-group {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 18px 18px 16px;
    border: 1px solid rgba(55, 77, 206, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)), linear-gradient(135deg, rgba(55, 77, 206, 0.06), rgba(16, 185, 129, 0.05));
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tech-group:hover {
    transform: translateY(-4px);
    border-color: rgba(55, 77, 206, 0.26);
    box-shadow: 0 24px 54px rgba(18, 22, 41, 0.12);
}

.tech-group-label {
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 84px;
    padding: 12px 10px 10px;
    border: 1px solid rgba(55, 77, 206, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
}

.tech-item img {
    width: min(82px, 100%);
    height: 34px;
    object-fit: contain;
}

.tech-item span {
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
}

.process-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(36deg, transparent 0 63%, rgba(14, 165, 233, 0.08) 63% 72%, transparent 72% 100%), radial-gradient(circle at 20% 20%, rgba(55, 77, 206, 0.08), transparent 30%), #f7f9fd;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 80px auto auto -60px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(55, 77, 206, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.process-layout {
    position: relative;
    display: grid;
    gap: 34px;
}

.process-copy p {
    margin-top: 16px;
}

.timeline {
    --rail-y: 42px;
    --line-start: calc(10% - 6.75px);
    --line-step: calc(20% + 4.5px);
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    padding: 72px 0 8px;
}

.timeline article {
    position: relative;
    z-index: 1;
    min-height: 230px;
    margin-top: 24px;
    padding: 28px 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9)), linear-gradient(120deg, rgba(55, 77, 206, 0.08), transparent);
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
    animation: processCardActive 8s ease-in-out infinite;
}

.timeline::before {
    content: "";
    position: absolute;
    left: var(--line-start);
    right: var(--line-start);
    top: var(--rail-y);
    z-index: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral), var(--violet), var(--rose));
}

.timeline::after {
    content: "";
    position: absolute;
    left: var(--line-start);
    top: calc(var(--rail-y) - 11px);
    z-index: 3;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(55, 77, 206, 0.2);
    border-top-color: var(--blue);
    border-right-color: var(--mint);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 5px rgba(55, 77, 206, 0.1), 0 0 24px rgba(55, 77, 206, 0.38);
    transform: translateX(-50%);
    animation: processRun 8s ease-in-out infinite, processRunnerSpin 0.72s linear infinite;
}

.timeline article:hover {
    transform: translateY(-5px);
    border-color: rgba(55, 77, 206, 0.22);
}

.timeline span {
    position: absolute;
    left: 50%;
    top: -78px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: #fff;
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 0 0 8px rgba(55, 77, 206, 0.08), 0 16px 34px rgba(18, 22, 41, 0.12);
    transform: translateX(-50%);
    animation: processNodeActive 8s ease-in-out infinite;
}

.timeline span::before,
.timeline span::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.timeline span::before {
    inset: -8px;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-top-color: #fff;
    border-right-color: rgba(16, 185, 129, 0.95);
    border-radius: 50%;
    opacity: 0;
    animation: processNodeLoader 8s ease-in-out infinite, processNodeSpin 0.7s linear infinite;
}

.timeline article:not(:nth-child(5)) span::after {
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 20px;
    height: 11px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    opacity: 0;
    transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
}

.timeline article:nth-child(5) span::after {
    inset: -20px;
    z-index: 0;
    border-radius: 50%;
    opacity: 0;
    background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.9) 0 3px, transparent 4px), radial-gradient(circle at 88% 28%, rgba(16, 185, 129, 0.9) 0 3px, transparent 4px), radial-gradient(circle at 82% 78%, rgba(55, 77, 206, 0.9) 0 3px, transparent 4px), radial-gradient(circle at 18% 76%, rgba(225, 29, 72, 0.85) 0 3px, transparent 4px), radial-gradient(circle at 10% 28%, rgba(14, 165, 233, 0.85) 0 3px, transparent 4px);
    transform: scale(0.5) rotate(0deg);
    animation: processCelebrateFour 8s ease-in-out infinite;
}

.timeline span img {
    position: relative;
    z-index: 2;
    transition: opacity 0.18s ease;
}

.timeline article:nth-child(1) span::after {
    animation: processNodeDoneOne 8s ease-in-out infinite;
}

.timeline article:nth-child(2) span::after {
    animation: processNodeDoneTwo 8s ease-in-out infinite;
}

.timeline article:nth-child(3) span::after {
    animation: processNodeDoneThree 8s ease-in-out infinite;
}

.timeline article:nth-child(1) span img {
    animation: processNodeIconOne 8s ease-in-out infinite;
}

.timeline article:nth-child(2) span img {
    animation: processNodeIconTwo 8s ease-in-out infinite;
}

.timeline article:nth-child(3) span img {
    animation: processNodeIconThree 8s ease-in-out infinite;
}

.timeline article:nth-child(5) span img {
    animation: processNodeIconFour 8s ease-in-out infinite;
}

.timeline article:nth-child(1),
.timeline article:nth-child(1) span,
.timeline article:nth-child(1) span::before {
    animation-delay: 0s;
}

.timeline article:nth-child(2),
.timeline article:nth-child(2) span,
.timeline article:nth-child(2) span::before {
    animation-delay: 1.6s;
}

.timeline article:nth-child(3),
.timeline article:nth-child(3) span,
.timeline article:nth-child(3) span::before {
    animation-delay: 3.2s;
}

.timeline article:nth-child(4),
.timeline article:nth-child(4) span,
.timeline article:nth-child(4) span::before {
    animation-delay: 4.8s;
}

.timeline article:nth-child(5),
.timeline article:nth-child(5) span,
.timeline article:nth-child(5) span::before {
    animation-delay: 6.4s;
}

.timeline span img {
    width: 20px;
    height: 20px;
}

.timeline small {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--blue);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0;
}

.timeline h3 {
    font-size: 1.3rem;
}

.timeline p {
    margin-top: 8px;
    max-width: 310px;
}

.clients-section {
    overflow: hidden;
    background: linear-gradient(125deg, rgba(55, 77, 206, 0.04) 0 18%, transparent 18% 100%), linear-gradient(180deg, #fff, #f8fbff);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.clients-section .client-marquee {
    position: relative;
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
}

.clients-section .client-marquee::before,
.clients-section .client-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: min(120px, 18vw);
    height: 100%;
    pointer-events: none;
}

.clients-section .client-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}

.clients-section .client-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff, transparent);
}

.clients-section .client-track {
    display: flex;
    width: max-content;
    gap: 0;
    padding: 10px 0 2px;
    animation: marqueeLeft 28s linear infinite;
}

.clients-section .client-set {
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
    padding-right: 16px;
}

.clients-section .client-set img {
    width: 180px;
    height: 80px;
    padding: 12px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f9fbff), linear-gradient(135deg, rgba(55, 77, 206, 0.08), rgba(16, 185, 129, 0.08));
    box-shadow: 0 10px 24px rgba(18, 22, 41, 0.05);
}

.clients-section .client-marquee:hover .client-track {
    animation-play-state: paused;
}

.contact-section {
    padding-bottom: 110px;
}

.about-hero {
    padding: 84px 0 68px;
    min-height: auto;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
}

.about-hero-centered {
    justify-items: center;
    text-align: center;
}

.about-hero-copy {
    max-width: 920px;
}

.about-hero-copy .lead {
    max-width: 840px;
    margin-inline: auto;
    font-size: 1.12rem;
}

.about-hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.about-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(55, 77, 206, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(18, 22, 41, 0.06);
}

.about-hero-points img {
    width: 16px;
    height: 16px;
}

.about-hero-illustration {
    display: none;
}

.about-hero-panel {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(55, 77, 206, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)), linear-gradient(135deg, rgba(55, 77, 206, 0.08), rgba(16, 185, 129, 0.05));
    box-shadow: 0 20px 44px rgba(18, 22, 41, 0.08);
}

.about-hero-logo {
    width: min(220px, 100%);
    height: auto;
}

.about-hero-panel p {
    color: #4d5870;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-stat {
    padding: 14px 12px;
    border: 1px solid rgba(55, 77, 206, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.about-stat strong {
    display: block;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
}

.about-stat span {
    color: var(--muted);
    font-size: 0.88rem;
}

.about-section {
    padding: 82px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.about-card {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 22px 24px;
    border: 1px solid rgba(55, 77, 206, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(18, 22, 41, 0.06);
    position: relative;
    overflow: hidden;
}

.about-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.94)), linear-gradient(145deg, rgba(55, 77, 206, 0.06), transparent);
}

.about-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.94)), linear-gradient(145deg, rgba(16, 185, 129, 0.06), transparent);
}

.about-card-icon,
.about-value-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    position: relative;
}

.about-card-icon img,
.about-value-icon img {
    width: 24px;
    height: 24px;
    animation: iconDrift 2.8s ease-in-out infinite;
}

.about-card-icon::before,
.about-value-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border: 1px solid rgba(55, 77, 206, 0.12);
    opacity: 0.7;
    animation: iconRing 2.8s ease-in-out infinite;
}

.about-card-icon-blue {
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.12), rgba(255, 255, 255, 0.86));
}

.about-card-icon-mint {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.86));
}

.about-value-icon {
    margin-bottom: 8px;
    border-radius: 50%;
}

.about-value-icon-blue {
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.12), rgba(255, 255, 255, 0.9));
}

.about-value-icon-mint {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.9));
}

.about-value-icon-warm {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0.9));
}

.about-card h3 {
    font-size: 1.38rem;
    line-height: 1.14;
}

.about-card p {
    color: #556174;
    font-size: 0.96rem;
    line-height: 1.6;
}

.about-card-list {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
    text-align: left;
}

.about-card-list li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    list-style: none;
}

.about-card-list span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(55, 77, 206, 0.12);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
}

.about-card-list p {
    margin: 0;
    color: #556174;
    font-size: 0.94rem;
    line-height: 1.55;
}

.about-pillars {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.about-pillar {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.about-pillar:first-child {
    border-top: 0;
    padding-top: 0;
}

.about-pillar strong {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.12), rgba(16, 185, 129, 0.14));
    color: var(--blue);
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
}

.about-pillar h3 {
    margin-bottom: 6px;
}

.about-pillar p {
    color: #556174;
    font-size: 0.94rem;
    line-height: 1.55;
    max-width: 44ch;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.team-card {
    display: grid;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(55, 77, 206, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
}

.team-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(55, 77, 206, 0.12), rgba(255, 255, 255, 0.94));
}

.team-card h3 {
    margin-top: 2px;
    font-size: 1.18rem;
}

.team-card p {
    margin-top: -4px;
    color: #556174;
    font-size: 0.95rem;
    line-height: 1.55;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.leadership-card {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 432px;
    border: 1px solid rgba(55, 77, 206, 0.14);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(18, 22, 41, 0.98)), linear-gradient(140deg, rgba(55, 77, 206, 0.06), rgba(16, 185, 129, 0.04));
    box-shadow: 0 22px 44px rgba(18, 22, 41, 0.1);
    overflow: hidden;
}

.leadership-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.3), transparent 24%), radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.12), transparent 18%), linear-gradient(180deg, transparent 0 52%, rgba(18, 22, 41, 0.04) 52% 100%), linear-gradient(180deg, transparent 0 70%, rgba(18, 22, 41, 0.82) 70% 100%);
    pointer-events: none;
}

.leadership-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.leadership-photo::before,
.leadership-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 0;
    animation: leadershipPulse 2.8s ease-in-out infinite;
}

.leadership-photo::after {
    inset: auto 0 0 0;
    height: 42%;
    opacity: 0.95;
    animation-delay: 0.3s;
    background: linear-gradient(180deg, transparent, rgba(18, 22, 41, 0.7));
}

.leadership-photo-alt::before,
.leadership-photo-alt::after {
    border-color: rgba(16, 185, 129, 0.2);
}

.leadership-photo-warm::before,
.leadership-photo-warm::after {
    border-color: rgba(249, 115, 22, 0.2);
}

.leadership-portrait {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(55, 77, 206, 0.16), rgba(255, 255, 255, 0.92));
    box-shadow: none;
    position: relative;
}

.leadership-portrait-alt {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.16), rgba(255, 255, 255, 0.92));
}

.leadership-portrait-warm {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.16), rgba(255, 255, 255, 0.92));
}

.leadership-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.12), rgba(16, 185, 129, 0.14));
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
}

.leadership-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 5px minmax(0, 1fr);
    gap: 14px;
    align-items: end;
    padding: 24px 22px 22px;
    color: #111;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.92) 26%, rgba(255, 255, 255, 0.96));
}

.leadership-accent {
    width: 5px;
    min-height: 72px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f5d061, #f59e0b);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.leadership-accent-mint {
    background: linear-gradient(180deg, #75f3d2, #0f766e);
}

.leadership-accent-warm {
    background: linear-gradient(180deg, #ffd28b, #f97316);
}

.leadership-text {
    display: grid;
    gap: 6px;
}

.leadership-role {
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.leadership-text h3 {
    color: #111;
    font-size: 1.12rem;
    line-height: 1.1;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.leadership-name {
    color: rgba(17, 17, 17, 0.8);
    font-size: 0.92rem;
    font-weight: 800;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.leadership-card p {
    color: rgba(17, 17, 17, 0.76);
}

.about-value {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 20px 24px;
    border: 1px solid rgba(55, 77, 206, 0.12);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
    box-shadow: 0 16px 34px rgba(18, 22, 41, 0.06);
}

.about-value h3 {
    font-size: 1.22rem;
    line-height: 1.14;
}

.about-value p {
    color: #556174;
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 220px;
}

.industries-section {
    background: linear-gradient(180deg, #fff, #fafcff);
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.industry-card {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 26px 24px 22px;
    border: 1px solid rgba(55, 77, 206, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95));
    box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.industry-card-stack {
    gap: 22px;
    padding: 28px 24px 24px;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(55, 77, 206, 0.18);
    box-shadow: 0 22px 46px rgba(18, 22, 41, 0.1);
}

.industry-intro {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.industry-intro-copy {
    display: grid;
    gap: 10px;
}

.industry-card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(55, 77, 206, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.96));
    box-shadow: 0 10px 22px rgba(18, 22, 41, 0.06);
}

.industry-card-icon img {
    width: 22px;
    height: 22px;
}

.industry-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
}

.industry-card p {
    color: #556174;
    line-height: 1.65;
}

.industry-stack-list {
    display: grid;
    gap: 18px;
}

.industry-stack-item {
    display: grid;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(55, 77, 206, 0.1);
}

.industry-stack-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.industry-stack-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 16px;
    background: rgba(55, 77, 206, 0.08);
    box-shadow: inset 0 0 0 1px rgba(55, 77, 206, 0.08);
}

.industry-stack-index img {
    width: 22px;
    height: 22px;
}

.industry-stack-copy {
    display: grid;
    gap: 0;
    align-content: center;
    min-height: 46px;
}

.industry-stack-head h4 {
    color: var(--navy);
    font-size: 1.08rem;
    line-height: 1.15;
    margin: 0;
}

.industry-stack-head p {
    color: #556174;
    line-height: 1.62;
    margin: 0;
}

.industry-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
}

.industry-more-badge {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 8px;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(55, 77, 206, 0.14);
    border-radius: 999px;
    background: rgba(55, 77, 206, 0.06);
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

.industry-more-badge img {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.industry-more-badge span {
    min-width: 0;
}

.industry-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
}

.industry-logo img {
    display: block;
    width: auto;
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    opacity: 1;
    transition: transform 300ms ease;
}

.industry-logo:hover img,
.industry-logo:focus-within img {
    transform: scale(1.03);
}

.industry-footer {
    color: var(--blue);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.about-cta {
    padding: 82px 0 112px;
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    color: #fff;
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.96), rgba(18, 22, 41, 0.98)), linear-gradient(55deg, transparent 0 54%, rgba(16, 185, 129, 0.25) 54% 64%, transparent 64% 100%), linear-gradient(145deg, rgba(249, 115, 22, 0.18) 0 18%, transparent 18% 100%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
}

.contact-card .section-label,
.contact-card p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-card h2 {
    max-width: 760px;
}

.contact-card p {
    max-width: 650px;
    margin-top: 14px;
}

.contact-actions {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.contact-actions p {
    max-width: 260px;
    text-align: right;
    font-size: 0.9rem;
}

.site-footer {
    padding: 54px 0 34px;
    border-top: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(55, 77, 206, 0.08) 0 18%, transparent 18% 100%), linear-gradient(42deg, transparent 0 70%, rgba(16, 185, 129, 0.07) 70% 82%, transparent 82% 100%), linear-gradient(180deg, #fff, #f8fbff);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(150px, 0.55fr) minmax(260px, 0.8fr);
    gap: 34px;
    align-items: start;
}

.footer-brand img {
    width: auto;
    max-width: min(100%, 220px);
    height: auto;
}

.footer-brand p {
    max-width: 520px;
    margin-top: 12px;
}

.footer-title {
    margin-bottom: 14px;
    color: var(--navy);
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    gap: 12px;
}

.footer-nav a {
    width: fit-content;
}

.footer-contact ul {
    display: grid;
    gap: 12px;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    list-style: none;
    color: #4d5870;
    font-size: 0.94rem;
    line-height: 1.55;
}

.footer-contact img {
    width: 38px;
    height: 38px;
    padding: 9px;
    border: 1px solid rgba(55, 77, 206, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 22px rgba(18, 22, 41, 0.06);
}

.footer-contact a {
    color: var(--ink);
    font-weight: 700;
    transition: color 0.18s ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--blue);
}

.footer-copy {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

html.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06) rotate(2deg);
    }
}

@keyframes scan {
    from {
        background-position: 0 0, 0 0, 0 0;
    }
    to {
        background-position: 56px 0, 0 0, 0 0;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

@keyframes drift {
    from {
        transform: translateX(-10%);
    }
    to {
        transform: translateX(10%);
    }
}

@keyframes ctaBreath {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 16px 36px rgba(15, 45, 122, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.16);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 20px 42px rgba(15, 45, 122, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.22);
    }
}

@keyframes ctaShine {
    0% {
        transform: skewX(-20deg) translateX(-60%);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    45% {
        transform: skewX(-20deg) translateX(320%);
        opacity: 0;
    }
    100% {
        transform: skewX(-20deg) translateX(320%);
        opacity: 0;
    }
}

@keyframes heroTagFloat {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 14px 30px rgba(18, 22, 41, 0.08);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(18, 22, 41, 0.12);
    }
}

@keyframes heroTagSweep {
    0%,
    20% {
        transform: translateX(-120%);
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    55% {
        transform: translateX(120%);
        opacity: 0;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes leadershipPulse {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

@keyframes leadershipFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes iconDrift {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-2px) rotate(4deg);
    }
}

@keyframes iconRing {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.95;
    }
}

@keyframes backToTopPulse {
    0%,
    100% {
        box-shadow: 0 18px 34px rgba(15, 45, 122, 0.28), 0 0 0 1px rgba(55, 77, 206, 0.18);
    }
    50% {
        box-shadow: 0 22px 40px rgba(15, 45, 122, 0.36), 0 0 0 1px rgba(55, 77, 206, 0.24);
    }
}

@keyframes nodePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.86;
    }
    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes processRun {
    0%,
    12% {
        left: var(--line-start);
        opacity: 1;
    }
    25%,
    37% {
        left: calc(var(--line-start) + var(--line-step));
        opacity: 1;
    }
    50%,
    62% {
        left: calc(var(--line-start) + var(--line-step) + var(--line-step));
        opacity: 1;
    }
    75%,
    87% {
        left: calc(var(--line-start) + var(--line-step) + var(--line-step) + var(--line-step));
        opacity: 1;
    }
    94%,
    99% {
        left: calc(var(--line-start) + var(--line-step) + var(--line-step) + var(--line-step));
        opacity: 0;
    }
    100% {
        left: var(--line-start);
        opacity: 0;
    }
}

@keyframes processRunnerSpin {
    from {
        transform: translateX(-50%) rotate(0turn);
    }
    to {
        transform: translateX(-50%) rotate(1turn);
    }
}

@keyframes processNodeActive {
    0%,
    12% {
        transform: translateX(-50%) scale(1.12);
        box-shadow: 0 0 0 10px rgba(55, 77, 206, 0.12), 0 0 0 18px rgba(55, 77, 206, 0.07), 0 20px 42px rgba(18, 22, 41, 0.18);
    }
    18%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 0 8px rgba(55, 77, 206, 0.08), 0 16px 34px rgba(18, 22, 41, 0.12);
    }
}

@keyframes processNodeLoader {
    0%,
    12% {
        opacity: 1;
    }
    18%,
    100% {
        opacity: 0;
    }
}

@keyframes processNodeSpin {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

@keyframes processNodeDoneOne {
    0%,
    14% {
        opacity: 0;
        transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
    }
    20%,
    94% {
        opacity: 1;
        transform: translate(-50%, -62%) rotate(-45deg) scale(1);
    }
    96%,
    100% {
        opacity: 0;
        transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
    }
}

@keyframes processNodeDoneTwo {
    0%,
    39% {
        opacity: 0;
        transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
    }
    45%,
    94% {
        opacity: 1;
        transform: translate(-50%, -62%) rotate(-45deg) scale(1);
    }
    96%,
    100% {
        opacity: 0;
        transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
    }
}

@keyframes processNodeDoneThree {
    0%,
    64% {
        opacity: 0;
        transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
    }
    70%,
    94% {
        opacity: 1;
        transform: translate(-50%, -62%) rotate(-45deg) scale(1);
    }
    96%,
    100% {
        opacity: 0;
        transform: translate(-50%, -62%) rotate(-45deg) scale(0.68);
    }
}

@keyframes processNodeIconOne {
    0%,
    14% {
        opacity: 1;
    }
    20%,
    94% {
        opacity: 0;
    }
    96%,
    100% {
        opacity: 1;
    }
}

@keyframes processNodeIconTwo {
    0%,
    39% {
        opacity: 1;
    }
    45%,
    94% {
        opacity: 0;
    }
    96%,
    100% {
        opacity: 1;
    }
}

@keyframes processNodeIconThree {
    0%,
    64% {
        opacity: 1;
    }
    70%,
    94% {
        opacity: 0;
    }
    96%,
    100% {
        opacity: 1;
    }
}

@keyframes processNodeIconFour {
    0%,
    87% {
        opacity: 1;
    }
    90%,
    94% {
        opacity: 0;
    }
    96%,
    100% {
        opacity: 1;
    }
}

@keyframes processCelebrateFour {
    0%,
    87% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    90%,
    94% {
        opacity: 1;
        transform: scale(1.15) rotate(18deg);
    }
    98%,
    100% {
        opacity: 0;
        transform: scale(1.42) rotate(32deg);
    }
}

@keyframes processCardActive {
    0%,
    12% {
        transform: translateY(-7px);
        border-color: rgba(55, 77, 206, 0.34);
        box-shadow: 0 24px 58px rgba(18, 22, 41, 0.14);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96)), linear-gradient(120deg, rgba(55, 77, 206, 0.14), transparent);
    }
    18%,
    100% {
        transform: translateY(0);
        border-color: var(--line);
        box-shadow: 0 14px 34px rgba(18, 22, 41, 0.06);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9)), linear-gradient(120deg, rgba(55, 77, 206, 0.08), transparent);
    }
}

@media (max-width: 1120px) {
    h1 {
        font-size: 3.8rem;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-system {
        justify-self: start;
        opacity: 1;
        width: min(620px, 100%);
    }
    .system-stage {
        height: 390px;
    }
    .services-grid,
    .proof-grid,
    .problem-grid,
    .tech-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .process-layout,
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-layout,
    .about-grid,
    .about-values,
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-head {
        display: grid;
        align-items: start;
    }
    .timeline {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
    }
    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }
    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .site-nav a {
        padding: 13px 10px;
        border-bottom: 1px solid var(--line);
    }
    .site-nav summary {
        padding: 13px 10px;
        border-bottom: 1px solid var(--line);
    }
    .nav-group>summary::before {
        margin-right: 4px;
    }
    .nav-submenu {
        position: static;
        min-width: 0;
        padding: 0 0 8px 14px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .nav-group:not([open])>.nav-submenu {
        display: none;
    }
    .nav-submenu a {
        padding: 10px 8px;
    }
    .site-nav a:last-child {
        border-bottom: 0;
    }
    .hero-layout {
        min-height: auto;
    }
    .client-logo img {
        height: 52px;
    }
    .partner-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-actions {
        justify-items: start;
    }
    .contact-actions p {
        max-width: none;
        text-align: left;
    }
    .process-layout {
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .timeline {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
        gap: 18px;
        min-width: 1080px;
        padding: 72px 0 8px;
    }
    .timeline::before {
        left: var(--line-start);
        right: var(--line-start);
        top: var(--rail-y);
        bottom: auto;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral), var(--violet), var(--rose));
    }
    .timeline::after {
        display: block;
    }
    .timeline article {
        margin-top: 24px;
        padding: 28px 22px 24px;
        animation: processCardActive 8s ease-in-out infinite;
    }
    .timeline span {
        left: 50%;
        top: -78px;
        transform: translateX(-50%);
        animation: processNodeActive 8s ease-in-out infinite;
    }
    .footer-inner {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    html,
    body {
        background: #fff;
    }

    body::before {
        display: none;
    }

    .container {
        width: min(100% - 24px, 1160px);
    }
    .header-inner {
        min-height: 76px;
    }
    .brand img {
        width: 144px;
    }
    .hero {
        min-height: auto;
        padding: 56px 0 52px;
    }
    .about-hero {
        padding: 64px 0 50px;
    }
    .hero-system {
        height: auto;
        display: grid;
        gap: 12px;
    }
    .system-stage {
        height: auto;
    }
    .system-map {
        display: none;
    }
    .system-card-main,
    .hero-panel {
        position: static;
        width: 100%;
        margin-top: 0;
    }
    .system-card-main {
        padding: 18px;
    }
    .hero-panel {
        padding: 18px;
    }
    h1 {
        font-size: 2.35rem;
        line-height: 0.98;
    }
    h1 span:last-child {
        margin-top: 8px;
        padding: 0.1em 0.18em 0.12em;
    }
    h2 {
        font-size: 2rem;
    }
    .lead {
        font-size: 0.98rem;
    }
    .hero-actions,
    .contact-actions {
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .trust-row {
        grid-template-columns: 1fr;
    }
    .partner-strip {
        grid-template-columns: 1fr;
    }
    .partner-strip img {
        height: 58px;
    }
    .client-logo {
        width: 200px;
        height: 92px;
    }
    .client-logo img {
        height: 46px;
    }
    .trust-row div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .trust-row div:last-child {
        border-bottom: 0;
    }
    .section {
        padding: 72px 0;
    }
    .services-grid,
    .proof-grid,
    .problem-grid,
    .tech-grid,
    .product-stack {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: auto;
    }
    .proof-card,
    .timeline article {
        min-height: auto;
    }
    .timeline {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
        gap: 18px;
        min-width: 1080px;
        padding: 72px 0 8px;
    }
    .timeline::before {
        left: var(--line-start);
        right: var(--line-start);
        top: var(--rail-y);
        bottom: auto;
        width: auto;
        height: 2px;
        background: linear-gradient(90deg, var(--blue), var(--mint), var(--coral), var(--violet), var(--rose));
    }
    .timeline::after {
        display: block;
    }
    .timeline article {
        margin-top: 24px;
        padding: 28px 22px 24px;
    }
    .timeline span {
        left: 50%;
        top: -78px;
    }
    .contact-card {
        padding: 24px;
    }
    .about-hero-panel {
        padding: 22px;
    }
    .about-section,
    .about-cta {
        padding: 64px 0;
    }
    .about-card {
        padding: 22px 18px 20px;
    }
    .about-hero-points {
        margin-top: 22px;
    }
    .about-hero-points span {
        width: 100%;
        justify-content: center;
    }
    .about-hero-illustration {
        margin-top: 22px;
    }
    .about-card-icon,
    .about-value-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
    .about-card-icon img,
    .about-value-icon img {
        width: 20px;
        height: 20px;
    }
    .about-values {
        margin-top: 24px;
    }
    .team-grid {
        margin-top: 24px;
    }
    .about-card h3 {
        font-size: 1.15rem;
    }
    .about-value h3 {
        font-size: 1.08rem;
    }
    .industry-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .industry-card {
        padding: 22px 18px 20px;
        border-radius: 20px;
    }
    .industry-card-stack {
        gap: 18px;
        padding: 22px 18px 20px;
    }
    .industry-intro {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .industry-stack-list {
        gap: 16px;
    }
    .industry-stack-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .industry-logo {
        height: 82px;
    }
    .industry-logo img {
        height: 48px;
    }
    .leadership-photo {
        width: 100%;
    }
    .leadership-portrait {
        width: 100%;
    }
    .leadership-card {
        min-height: 360px;
    }
    .leadership-content {
        padding: 20px 18px 18px;
    }
    .leadership-grid {
        margin-top: 24px;
    }
    .leadership-card {
        min-height: 380px;
    }
    .leadership-content {
        padding: 22px 18px 20px;
    }
    .about-pillar {
        grid-template-columns: 38px minmax(0, 1fr);
    }
    .about-pillar strong {
        width: 38px;
        height: 38px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }
    .site-footer {
        padding: 42px 0 30px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-contact li {
        grid-template-columns: 34px minmax(0, 1fr);
    }
    .footer-contact img {
        width: 34px;
        height: 34px;
        padding: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .back-to-top {
        animation: none;
    }
    html.js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

------WebKitFormBoundaryWwzDBB4IEixwh2Wx
Content-Disposition: form-data; name="overwrite"

0