:root {
    --dark: #1B1B27;
    --dark2: #13131F;
    --card: #ECECF3;
    --card2: #E1E1EA;
    --card3: #C7C7D0;
    --white: #FFFFFF;
    --bg: #F5F5FA;
    --text: #1B1B27;
    --body: #3C3939;
    --muted: #44546A;
    --gold: #FFC000;
    --gold2: #FFD84D;
    --blue: #4472C4;
    --blue2: #5B9BD5;
    --orange: #ED7D31;
    --green: #70AD47;
    --slate: #44546A;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--white);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    overflow-x: hidden
}

a {
    text-decoration: none;
    cursor: pointer
}

img {
    max-width: 100%;
    display: block
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--card)
}

::-webkit-scrollbar-thumb {
    background: var(--gold)
}

/* ── NAV ── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--card3);
    padding: 0 60px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow .3s, height .3s;
}

#nav.scrolled {
    box-shadow: 0 2px 20px rgba(27, 27, 39, .1);
    height: 62px
}

.nav-logo img {
    height: 42px;
    width: auto;
    transition: height .3s
}

#nav.scrolled .nav-logo img {
    height: 36px
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center
}

.nav-links a {
    font-family: 'Raleway';
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 0;
    position: relative;
    transition: color .2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .2s;
}

.nav-links a:hover {
    color: var(--text)
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

.nav-cta {
    background: var(--dark);
    color: var(--gold);
    padding: 10px 26px;
    font-family: 'Raleway';
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: all .25s;
    border: 2px solid var(--dark);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold)
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55fr 45fr;
    padding-top: 72px;
    overflow: hidden;
}

.hero-left {
    background: var(--dark);
    padding: 80px 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 38px, rgba(255, 192, 0, .02) 38px, rgba(255, 192, 0, .02) 39px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 192, 0, .1);
    border: 1px solid rgba(255, 192, 0, .3);
    padding: 6px 16px;
    margin-bottom: 28px;
    width: fit-content;
    font-family: 'Roboto Mono';
    font-size: .67rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    animation: fadeUp .8s both;
    position: relative;
    z-index: 1;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-h1 {
    font-family: 'Raleway';
    font-weight: 300;
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    line-height: 1.12;
    color: rgba(231, 230, 230, .9);
    margin-bottom: 24px;
    animation: fadeUp .8s .1s both;
    position: relative;
    z-index: 1;
}

.hero-h1 strong {
    display: block;
    font-weight: 800;
    color: var(--gold)
}

.hero-p {
    font-size: .97rem;
    line-height: 1.9;
    color: rgba(231, 230, 230, .6);
    max-width: 490px;
    margin-bottom: 44px;
    animation: fadeUp .8s .2s both;
    position: relative;
    z-index: 1;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .8s .3s both;
    position: relative;
    z-index: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 13px 34px;
    font-family: 'Raleway';
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: all .25s;
    border: 2px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 192, 0, .3)
}

.btn-ghost {
    background: transparent;
    color: rgba(231, 230, 230, .85);
    padding: 13px 34px;
    font-family: 'Raleway';
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1.5px solid rgba(231, 230, 230, .2);
    transition: all .25s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 70px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(231, 230, 230, .35);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: fadeIn 1s .8s both;
    font-family: 'Roboto Mono';
}

.scroll-line {
    width: 36px;
    height: 1px;
    background: var(--gold)
}

.hero-right {
    background: var(--card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: 'IC';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 22rem;
    color: rgba(27, 27, 39, .04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    width: 100%;
    max-width: 400px;
    z-index: 1;
    animation: fadeIn .8s .4s both;
}

.hstat {
    background: var(--white);
    padding: 28px 24px;
    border-bottom: 3px solid var(--card3);
    transition: border-color .3s;
}

.hstat:hover {
    border-bottom-color: var(--gold)
}

.hstat-n {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.hstat-n em {
    color: var(--gold);
    font-style: normal
}

.hstat-l {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.4
}

.hero-trusted {
    margin-top: 28px;
    z-index: 1;
    text-align: center;
}

.hero-trusted span {
    font-family: 'Roboto Mono';
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 12px;
}

.trusted-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.t-badge {
    background: var(--dark);
    color: var(--gold);
    padding: 6px 14px;
    font-family: 'Raleway';
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
}

/* ── MARQUEE TICKER ── */
.ticker {
    background: var(--dark);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-inner {
    display: flex;
    gap: 0;
    animation: ticker 35s linear infinite;
    width: max-content;
}

.ticker-item {
    padding: 0 48px;
    font-family: 'Roboto Mono';
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(231, 230, 230, .4);
    white-space: nowrap;
    border-right: 1px solid rgba(255, 192, 0, .2);
}

.ticker-item.hi {
    color: var(--gold)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── SECTION WRAPPER ── */
.sec {
    padding: 96px 60px
}

.sec.dark {
    background: var(--dark)
}

.sec.grey {
    background: var(--bg)
}

.sec.card-bg {
    background: var(--card)
}

.sec-inner {
    max-width: 1240px;
    margin: 0 auto
}

.sec-tag {
    font-family: 'Roboto Mono';
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sec-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gold);
    flex: none
}

.sec-tag.light {
    color: rgba(255, 192, 0, .7)
}

.sec-tag.light::before {
    background: var(--gold)
}

h2.sh2 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

h2.sh2.on-dark {
    color: rgba(231, 230, 230, .9)
}

h2.sh2 em {
    font-style: normal;
    color: var(--blue)
}

h2.sh2 span {
    color: var(--gold)
}

p.lead {
    font-size: .98rem;
    color: var(--body);
    line-height: 1.85;
    max-width: 640px
}

p.lead.light {
    color: rgba(231, 230, 230, .58)
}

.rule {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue) 50%, transparent)
}

/* ── REVEAL ── */
.rev {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s, transform .65s
}

.rev.vis {
    opacity: 1;
    transform: none
}

.rev2 {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .65s .15s, transform .65s .15s
}

.rev2.vis {
    opacity: 1;
    transform: none
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 52px
}

.about-copy p {
    font-size: .97rem;
    color: var(--body);
    line-height: 1.9;
    margin-bottom: 20px
}

.about-copy strong {
    color: var(--dark);
    font-weight: 500
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.pill {
    background: var(--card);
    border-left: 4px solid var(--card3);
    padding: 24px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color .3s, background .3s, box-shadow .3s;
}

.pill:hover {
    border-left-color: var(--gold);
    background: var(--white);
    box-shadow: 0 2px 18px rgba(27, 27, 39, .07)
}

.pill-ico {
    width: 38px;
    height: 38px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex: none
}

.pill h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
    margin-bottom: 6px
}

.pill p {
    font-size: .82rem;
    color: var(--body);
    line-height: 1.7
}

/* ── SERVICES ── */
.svc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 52px
}

.svc {
    background: var(--white);
    padding: 36px 26px;
    border-top: 3px solid var(--card2);
    transition: border-color .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
}

.svc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gold);
    opacity: .04;
    transition: height .4s;
}

.svc:hover {
    border-top-color: var(--gold);
    box-shadow: 0 6px 32px rgba(27, 27, 39, .09)
}

.svc:hover::after {
    height: 100%
}

.svc-n {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--card2);
    line-height: 1;
    margin-bottom: 18px;
    transition: color .3s
}

.svc:hover .svc-n {
    color: var(--gold)
}

.svc h3 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .98rem;
    color: var(--dark);
    margin-bottom: 10px
}

.svc p {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.75
}

.lc-box {
    background: var(--dark);
    padding: 48px 60px;
    margin-top: 3px
}

.lc-title {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 1.25rem;
    color: rgba(231, 230, 230, .9);
    margin-bottom: 34px
}

.lc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px
}

.lc-step {
    display: flex;
    gap: 18px
}

.lc-num {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--gold);
    line-height: 1;
    flex: none
}

.lc-step h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .9rem;
    color: rgba(231, 230, 230, .9);
    margin-bottom: 6px
}

.lc-step p {
    font-size: .82rem;
    color: rgba(231, 230, 230, .5);
    line-height: 1.7
}

/* ── AI ── */
.ai-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start
}

.ai-intro p {
    font-size: .97rem;
    color: var(--body);
    line-height: 1.85;
    margin-bottom: 18px
}

.ai-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px
}

.acard {
    background: var(--card);
    padding: 24px 20px;
    border-bottom: 3px solid transparent;
    transition: all .3s;
}

.acard:hover {
    border-bottom-color: var(--blue);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(27, 27, 39, .07)
}

.acard-ico {
    font-size: 1.4rem;
    margin-bottom: 10px
}

.acard h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .88rem;
    color: var(--dark);
    margin-bottom: 6px
}

.acard p {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.75
}

/* ── DATA ── */
.data-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 52px
}

.data-intro p {
    font-size: .97rem;
    color: var(--body);
    line-height: 1.85;
    margin-bottom: 18px
}

.dpils {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.dpil {
    background: var(--white);
    padding: 24px 26px;
    border-left: 4px solid var(--card3);
    transition: border-color .3s
}

.dpil:nth-child(1):hover {
    border-left-color: var(--gold)
}

.dpil:nth-child(2):hover {
    border-left-color: var(--blue)
}

.dpil:nth-child(3):hover {
    border-left-color: var(--orange)
}

.dpil:nth-child(4):hover {
    border-left-color: var(--green)
}

.dpil h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .88rem;
    color: var(--dark);
    margin-bottom: 10px
}

.dpil ul {
    list-style: none
}

.dpil li {
    font-size: .81rem;
    color: var(--body);
    padding: 3px 0 3px 14px;
    position: relative
}

.dpil li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--gold);
    font-size: .67rem
}

/* ── BANKING ── */
.bk-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px
}

.bkcard {
    background: rgba(255, 255, 255, .06);
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.bkcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.bkcard:hover::before {
    transform: scaleX(1)
}

.bkcard:hover {
    background: rgba(255, 255, 255, .1)
}

.bkcard-ico {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block
}

.bkcard h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .95rem;
    color: rgba(231, 230, 230, .9);
    margin-bottom: 10px
}

.bkcard p {
    font-size: .81rem;
    color: rgba(231, 230, 230, .48);
    line-height: 1.75
}

.bk-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 3px
}

.bkpi {
    padding: 32px 24px;
    text-align: center
}

.bkpi:nth-child(1) {
    background: var(--gold)
}

.bkpi:nth-child(2) {
    background: var(--blue)
}

.bkpi:nth-child(3) {
    background: var(--blue2)
}

.bkpi:nth-child(4) {
    background: var(--slate)
}

.bkpi-t {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 2.2rem;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--dark)
}

.bkpi-n {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 2.2rem;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--dark)
}

.bkpi:nth-child(2) .bkpi-n,
.bkpi:nth-child(3) .bkpi-n,
.bkpi:nth-child(4) .bkpi-n {
    color: rgba(255, 255, 255, .95)
}

.bkpi-l {
    font-size: .71rem;
    color: rgba(27, 27, 39, .6);
    font-weight: 500;
    line-height: 1.4
}

.bkpi:nth-child(2) .bkpi-l,
.bkpi:nth-child(3) .bkpi-l,
.bkpi:nth-child(4) .bkpi-l {
    color: rgba(255, 255, 255, .65)
}

.bk-deep {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 52px;
    align-items: start
}

.bk-deep-left h3 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(231, 230, 230, .9);
    margin-bottom: 14px
}

.bk-deep-left p {
    font-size: .9rem;
    color: rgba(231, 230, 230, .55);
    line-height: 1.85;
    margin-bottom: 20px
}

.bk-features {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.bk-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .04);
    padding: 18px 20px;
    border-left: 3px solid rgba(255, 192, 0, .3);
    transition: border-color .3s;
}

.bk-feat:hover {
    border-left-color: var(--gold)
}

.bk-feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex: none;
    margin-top: 5px
}

.bk-feat p {
    font-size: .84rem;
    color: rgba(231, 230, 230, .6);
    line-height: 1.7
}

.bk-feat strong {
    color: rgba(231, 230, 230, .9);
    font-weight: 500
}

/* ── PARTNERS ── */
.eco-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 52px;
    margin-bottom: 3px
}

.eco-card {
    background: var(--white);
    padding: 40px 32px;
    border-top: 4px solid var(--card3);
    transition: all .3s;
}

.eco-card:nth-child(1):hover {
    border-top-color: var(--gold);
    box-shadow: 0 8px 36px rgba(27, 27, 39, .1)
}

.eco-card:nth-child(2):hover {
    border-top-color: var(--blue);
    box-shadow: 0 8px 36px rgba(27, 27, 39, .1)
}

.eco-card:nth-child(3):hover {
    border-top-color: var(--orange);
    box-shadow: 0 8px 36px rgba(27, 27, 39, .1)
}

.eco-role {
    font-family: 'Roboto Mono';
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
    display: block
}

.eco-name {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 5px
}

.eco-tag-line {
    font-size: .8rem;
    color: var(--blue);
    font-weight: 500;
    margin-bottom: 16px
}

.eco-card p {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.78;
    margin-bottom: 12px
}

.eco-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

.eco-stat {
    text-align: center
}

.eco-stat strong {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
    display: block;
    line-height: 1
}

.eco-stat span {
    font-size: .7rem;
    color: var(--muted)
}

.eco-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--dark);
    color: var(--gold);
    font-family: 'Raleway';
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .07em
}

.p-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px
}

.pstat {
    background: var(--dark);
    padding: 44px 36px;
    text-align: center
}

.pstat-n {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    display: block
}

.pstat-n em {
    color: var(--gold);
    font-style: normal
}

.pstat-l {
    font-size: .8rem;
    color: rgba(231, 230, 230, .45)
}

/* ── SPOTLIGHT ── */
.sp-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 72px;
    margin-top: 52px
}

.sp-left h3 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 14px
}

.sp-left p {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.82;
    margin-bottom: 18px
}

.tem-badge {
    display: inline-block;
    padding: 7px 16px;
    background: var(--dark);
    color: var(--gold);
    font-family: 'Raleway';
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.acc {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.ag {
    background: var(--white)
}

.ah {
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-left: 4px solid transparent;
    transition: all .25s
}

.ah:hover,
.ag.op .ah {
    border-left-color: var(--gold);
    background: var(--card)
}

.ah h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .87rem;
    color: var(--dark)
}

.aarrow {
    font-size: .58rem;
    color: var(--gold);
    transition: transform .3s
}

.ag.op .aarrow {
    transform: rotate(90deg)
}

.abody {
    display: none;
    padding: 4px 22px 18px;
    border-left: 4px solid var(--gold)
}

.ag.op .abody {
    display: block
}

.aitem {
    padding: 9px 0;
    border-bottom: 1px solid var(--card);
    font-size: .81rem;
    color: var(--body);
    line-height: 1.6
}

.aitem:last-child {
    border-bottom: none
}

.aitem strong {
    color: var(--dark);
    font-weight: 500
}

/* ── IMPACT ── */
.impact-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px
}

.imp {
    background: var(--white);
    padding: 36px 26px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color .3s
}

.imp:hover {
    border-bottom-color: var(--gold)
}

.imp-n {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
    display: block
}

.imp-n sup {
    font-size: 1.1rem;
    color: var(--gold)
}

.imp-l {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.5
}

/* ── PROCESS ── */
.proc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 52px
}

.proc-steps {
    display: flex;
    flex-direction: column
}

.pstep {
    display: flex;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--card2)
}

.pstep:first-child {
    padding-top: 0
}

.pstep-c {
    width: 44px;
    height: 44px;
    border: 2px solid var(--card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono';
    font-size: .72rem;
    color: var(--muted);
    flex: none;
    transition: all .3s
}

.pstep:hover .pstep-c {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark)
}

.pstep h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .93rem;
    color: var(--dark);
    margin-bottom: 6px
}

.pstep p {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.7
}

.proc-cards {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.pcard {
    background: var(--card);
    padding: 28px;
    border-left: 4px solid transparent;
    transition: all .3s
}

.pcard:hover {
    border-left-color: var(--gold);
    background: var(--white);
    box-shadow: 0 2px 14px rgba(27, 27, 39, .06)
}

.pcard-ico {
    font-size: 1.6rem;
    margin-bottom: 12px
}

.pcard h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
    margin-bottom: 7px
}

.pcard p {
    font-size: .83rem;
    color: var(--body);
    line-height: 1.7
}

/* ── INDUSTRIES ── */
.ind-intro-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 48px;
    margin-bottom: 3px;
}

.ind-intro-stat {
    background: var(--dark);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ind-intro-num {
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.ind-intro-label {
    font-size: .74rem;
    color: rgba(231, 230, 230, .5);
    letter-spacing: .04em
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.ind-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: box-shadow .35s, transform .35s;
    overflow: hidden;
    position: relative;
}

.ind-card:hover {
    box-shadow: 0 12px 44px rgba(27, 27, 39, .13);
    transform: translateY(-4px);
    z-index: 2;
}

.ind-accent {
    height: 4px;
    width: 100%;
}

.ind-header {
    padding: 26px 26px 18px;
}

.ind-header-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px
}

.ind-ico {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex: none;
    background: var(--card);
}

.ind-title-block h3 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.ind-verdict {
    font-family: 'Roboto Mono';
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.ind-desc {
    font-size: .8rem;
    color: var(--body);
    line-height: 1.72;
    border-top: 1px solid var(--card2);
    padding-top: 14px;
}

.ind-cases {
    padding: 0 26px 18px;
    flex: 1;
}

.ind-case {
    padding: 13px 0;
    border-bottom: 1px solid var(--card2);
}

.ind-case:last-child {
    border-bottom: none
}

.ind-case-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.ind-case-tag {
    font-family: 'Raleway';
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 0;
    flex: none;
}

.tag-bc {
    background: rgba(255, 192, 0, .15);
    color: #9A7200
}

.tag-ad {
    background: rgba(68, 114, 196, .13);
    color: #2B5CA8
}

.tag-in {
    background: rgba(237, 125, 49, .13);
    color: #B85B15
}

.ind-case-title {
    font-family: 'Raleway';
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.ind-case-body {
    font-size: .77rem;
    color: var(--body);
    line-height: 1.65;
}

.ind-case-metric {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    font-family: 'Raleway';
    font-weight: 700;
    font-size: .72rem;
    color: var(--dark);
}

.ind-case-metric::before {
    content: '↑';
    color: var(--green);
    font-weight: 800
}

.ind-footer {
    padding: 12px 26px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ind-footer-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap
}

.ind-ptag {
    padding: 3px 9px;
    background: rgba(255, 192, 0, .1);
    border: 1px solid rgba(255, 192, 0, .22);
    font-family: 'Raleway';
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--gold);
}

.ind-case-count {
    font-family: 'Roboto Mono';
    font-size: .6rem;
    color: rgba(231, 230, 230, .3);
    letter-spacing: .1em;
    white-space: nowrap;
}

/* ── WHY IC ── */
.why-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 52px
}

.why {
    background: var(--white);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s
}

.why:hover {
    box-shadow: 0 8px 32px rgba(27, 27, 39, .09)
}

.why-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card3);
    transition: background .3s
}

.why:nth-child(1):hover .why-bar {
    background: var(--gold)
}

.why:nth-child(2):hover .why-bar {
    background: var(--blue)
}

.why:nth-child(3):hover .why-bar {
    background: var(--orange)
}

.why:nth-child(4):hover .why-bar {
    background: var(--green)
}

.why:nth-child(5):hover .why-bar {
    background: var(--blue2)
}

.why:nth-child(6):hover .why-bar {
    background: var(--slate)
}

.why-ico {
    font-size: 2rem;
    margin-bottom: 16px
}

.why h4 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    margin-bottom: 10px
}

.why p {
    font-size: .82rem;
    color: var(--body);
    line-height: 1.72
}

/* ── TESTIMONIALS ── */
.test-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 52px
}

.tcard {
    background: var(--white);
    padding: 36px 30px;
    border-top: 3px solid var(--card3);
    transition: border-color .3s, box-shadow .3s
}

.tcard:hover {
    border-top-color: var(--gold);
    box-shadow: 0 8px 32px rgba(27, 27, 39, .08)
}

.tcard-q {
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif
}

.tcard p {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tcard-av {
    width: 38px;
    height: 38px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway';
    font-weight: 700;
    font-size: .78rem;
    color: var(--gold);
    flex: none
}

.tcard-info strong {
    font-family: 'Raleway';
    font-size: .85rem;
    color: var(--dark);
    font-weight: 600;
    display: block
}

.tcard-info span {
    font-size: .75rem;
    color: var(--muted)
}

/* ── CONTACT ── */
.ct-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px
}

.ct-left h2 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px
}

.ct-left h2 span {
    color: var(--gold)
}

.ct-left>p {
    font-size: .97rem;
    color: var(--body);
    line-height: 1.85;
    margin-bottom: 32px
}

.etags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 36px
}

.etag {
    padding: 6px 14px;
    background: var(--card);
    border: 1px solid var(--card3);
    font-size: .74rem;
    color: var(--body);
    font-family: 'Raleway';
    font-weight: 500;
    transition: all .2s
}

.etag:hover {
    background: var(--dark);
    color: var(--gold);
    border-color: var(--dark)
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.tmember {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    padding: 18px 22px;
    border-left: 4px solid var(--card3);
    transition: border-color .3s
}

.tmember:hover {
    border-left-color: var(--gold)
}

.tmember-av {
    width: 40px;
    height: 40px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway';
    font-weight: 700;
    font-size: .76rem;
    color: var(--gold);
    flex: none
}

.tmember h5 {
    font-family: 'Raleway';
    font-weight: 600;
    font-size: .88rem;
    color: var(--dark);
    margin-bottom: 2px
}

.tmember span {
    font-size: .79rem;
    color: var(--blue)
}

.ct-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.fgrp {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.fgrp label {
    font-family: 'Raleway';
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.fgrp input,
.fgrp select,
.fgrp textarea {
    background: var(--card);
    border: 1.5px solid var(--card3);
    color: var(--dark);
    padding: 12px 14px;
    font-family: 'Roboto';
    font-size: .88rem;
    outline: none;
    transition: border-color .25s, background .25s;
    resize: none
}

.fgrp input:focus,
.fgrp select:focus,
.fgrp textarea:focus {
    border-color: var(--gold);
    background: var(--white)
}

.fgrp select option {
    background: var(--white)
}

.fsub {
    background: var(--dark);
    color: var(--gold);
    padding: 14px 38px;
    font-family: 'Raleway';
    font-size: .79rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 2px solid var(--dark);
    cursor: pointer;
    align-self: flex-start;
    transition: all .25s
}

.fsub:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold)
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 68px 60px 36px
}

.ft {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 52px
}

.fb .fl {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px
}

.fb .fl img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1)
}

.fb p {
    font-size: .82rem;
    color: rgba(231, 230, 230, .42);
    line-height: 1.7;
    max-width: 270px
}

.fc h5 {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px
}

.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.fc a {
    color: rgba(231, 230, 230, .42);
    text-decoration: none;
    font-size: .83rem;
    transition: color .2s
}

.fc a:hover {
    color: rgba(231, 230, 230, .9)
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.ft-bottom p {
    font-size: .74rem;
    color: rgba(231, 230, 230, .28)
}

.ft-regs {
    display: flex;
    gap: 16px
}

.freg {
    font-family: 'Roboto Mono';
    font-size: .6rem;
    color: rgba(231, 230, 230, .26);
    letter-spacing: .1em;
    text-transform: uppercase
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* ── MOBILE ── */
@media(max-width:1024px) {
    #nav {
        padding: 0 24px
    }

    .nav-links {
        display: none
    }

    #hero {
        grid-template-columns: 1fr
    }

    .hero-left {
        padding: 80px 28px 60px
    }

    .hero-right {
        display: none
    }

    .about-grid,
    .ai-layout,
    .data-layout,
    .ct-layout,
    .sp-layout,
    .proc-layout,
    .bk-deep {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .svc-row,
    .bk-cards,
    .bk-kpis,
    .eco-row,
    .p-stats-row,
    .impact-row,
    .why-row,
    .test-row {
        grid-template-columns: 1fr 1fr
    }

    .lc-row,
    .ft {
        grid-template-columns: 1fr 1fr
    }

    .ind-grid {
        grid-template-columns: 1fr 1fr
    }

    .ind-intro-bar {
        grid-template-columns: 1fr 1fr
    }

    .sec {
        padding: 70px 28px
    }

    .lc-box {
        padding: 40px 28px
    }
}