.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 120px 2rem 80px
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124, 58, 237, .15) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 20% 80%, rgba(6, 214, 160, .08) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 50% 20%, rgba(26, 86, 219, .12) 0%, transparent 60%)
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%)
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 1.5rem;
    width: fit-content
}

.hero-pill .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--acc);
    animation: pulsate 1.5s infinite
}

.hero-pill-badge {
    background: var(--grad2);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: .5px;
    margin-right: 2px
}

.hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -1px
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .58);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.hstat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: all .3s
}

.hstat:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(26, 86, 219, .3)
}

.hstat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1
}

.hstat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .3rem
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 86, 219, .2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulsate 4s ease-in-out infinite
}

.hero-svg-wrap {
    position: relative;
    z-index: 3;
    animation: floatY 5s ease-in-out infinite alternate
}
.hero-svg-wrap svg {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 30px 60px rgba(26, 86, 219, 0.4))
}
.float-chip {
    position: absolute;
    background: rgba(13, 27, 62, .9);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 3
}

.fc1 {
    top: 5%;
    right: -30px;
    animation: floatX 3s ease-in-out infinite alternate
}

.fc2 {
    bottom: 10%;
    left: -35px;
    animation: floatX 3.5s ease-in-out infinite alternate-reverse
}

.fc3 {
    top: 48%;
    right: -45px;
    animation: floatX 2.8s ease-in-out infinite alternate
}

.chip-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.chip-title {
    font-size: .75rem;
    font-weight: 700;
    color: #fff
}

.chip-sub {
    font-size: .65rem;
    color: rgba(255, 255, 255, .45)
}

/* ── CLIENTS ── */
.clients {
    background: var(--dark2);
    padding: 40px 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.clients-inner {
    max-width: 1300px;
    margin: 0 auto
}

.clients-label {
    text-align: center;
    color: rgba(255, 255, 255, .3);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem
}

.clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: .4
}

.client-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    transition: all .3s;
    cursor: default
}

.clients-row:hover .client-logo {
    opacity: .4
}

.clients-row .client-logo:hover {
    opacity: 1;
    color: var(--acc)
}

/* ── ABOUT SECTION ── */
.about-section {
    background: var(--light)
}

.about-content p {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 1.2rem
}

.about-vals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem
}

.val-item {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    border: 1px solid rgba(26, 86, 219, .08);
    transition: all .3s;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.val-item:hover {
    border-color: var(--p);
    box-shadow: var(--sh2);
    transform: translateY(-3px)
}

.val-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.val-text h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem
}

.val-text p {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.55
}

/* ── SERVICES OVERVIEW ── */
.services-section {
    background: var(--dark);
    overflow: hidden
}

.services-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .1), transparent 70%);
    pointer-events: none
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 214, 160, .06), transparent 70%);
    pointer-events: none
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem
}

.svc-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    text-decoration: none;
    display: block
}

.svc-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity .3s
}

.svc-item:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(26, 86, 219, .25)
}

.svc-item:hover::before {
    opacity: .08
}

.svc-item>* {
    position: relative;
    z-index: 1
}

.svc-i-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden
}

.svc-i-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12)
}

.svc-item h3 {
    font-size: .98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .55rem
}

.svc-item p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    margin-bottom: .9rem
}

.svc-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--acc);
    font-size: .78rem;
    font-weight: 600;
    transition: gap .2s
}

.svc-item:hover .svc-more {
    gap: 10px
}

/* ── HOW IT WORKS ── */
.hiw-section {
    background: #fff
}

.hiw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all .3s;
    cursor: default;
    position: relative
}

.step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 74px;
    bottom: -6px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(26, 86, 219, .25), transparent);
    pointer-events: none
}

.step:last-child::before {
    display: none
}

.step:hover {
    background: var(--light)
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(26, 86, 219, .3);
    transition: transform .3s
}

.step:hover .step-num {
    transform: scale(1.1) rotate(5deg)
}

.step h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: var(--dark)
}

.step p {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.7
}

/* ── PLATFORMS PREVIEW ── */
.platforms-section {
    background: var(--light)
}

.plat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem
}

.plat-item {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(26, 86, 219, .08);
    transition: all .35s;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden
}

.plat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform .3s
}

.plat-item:hover {
    box-shadow: var(--sh);
    transform: translateY(-6px)
}

.plat-item:hover::after {
    transform: scaleX(1)
}

.plat-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem
}

.plat-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem
}

.plat-item p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1rem
}

.plat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.ptag {
    background: rgba(26, 86, 219, .07);
    color: var(--p);
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px
}

.plat-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--p);
    font-size: .8rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap .2s
}

.plat-item:hover .plat-arrow {
    gap: 10px
}

/* ── INDUSTRIES PREVIEW ── */
.industries-section {
    background: var(--dark2)
}

.industries-section .sec-title {
    color: #fff
}

.industries-section .sec-sub {
    color: rgba(255, 255, 255, .5)
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem
}

.ind-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 230px;
    cursor: pointer;
    text-decoration: none;
    display: block
}

.ind-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: transform .4s
}

.ind-card:hover .ind-bg {
    transform: scale(1.1)
}

.ind-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 13, 31, .92) 0%, rgba(6, 13, 31, .25) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background .3s
}

.ind-card:hover .ind-overlay {
    background: linear-gradient(to top, rgba(26, 86, 219, .88) 0%, rgba(26, 86, 219, .15) 100%)
}

.ind-name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: .3rem
}

.ind-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s
}

.ind-card:hover .ind-desc {
    max-height: 60px
}

.ind-learn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--acc);
    font-size: .75rem;
    font-weight: 600;
    margin-top: .5rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all .3s
}

.ind-card:hover .ind-learn {
    opacity: 1;
    transform: translateY(0)
}

/* ── TEAM PREVIEW ── */
.team-section {
    background: var(--light)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 86, 219, .07);
    transition: all .35s;
    text-align: center;
    text-decoration: none;
    display: block
}

.team-card:hover {
    box-shadow: var(--sh);
    transform: translateY(-8px)
}

.team-img {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden
}

.team-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: .08
}

.team-body {
    padding: 1.35rem
}

.team-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem
}

.team-role {
    font-size: .75rem;
    color: var(--p);
    font-weight: 600;
    margin-bottom: .65rem
}

.team-bio {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.65
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: .75rem
}

.tsoc {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--gray);
    transition: all .2s
}

.tsoc:hover {
    background: var(--p);
    color: #fff
}

/* ── TESTIMONIALS ── */
.testi-section {
    background: #fff
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem
}

.testi-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform .3s
}

.testi-card:hover {
    box-shadow: var(--sh);
    transform: translateY(-5px);
    background: #fff
}

.testi-card:hover::before {
    transform: scaleX(1)
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 4.5rem;
    color: rgba(26, 86, 219, .12);
    line-height: 0;
    height: 35px;
    display: block;
    margin-bottom: 1rem
}

.testi-text {
    font-size: .9rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic
}

.stars {
    color: var(--acc2);
    font-size: .88rem;
    letter-spacing: 2px;
    margin-bottom: .85rem
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
    flex-shrink: 0
}

.t-name {
    font-weight: 700;
    font-size: .85rem;
    color: var(--dark)
}

.t-role {
    font-size: .73rem;
    color: var(--gray)
}

/* ── INSIGHTS PREVIEW ── */
.insights-section {
    background: var(--dark)
}

.insights-section .sec-title {
    color: #fff
}

.insights-section .sec-sub {
    color: rgba(255, 255, 255, .5)
}

.ins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem
}

.ins-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 1.75rem;
    transition: all .3s;
    text-decoration: none;
    display: block
}

.ins-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(26, 86, 219, .3);
    transform: translateY(-5px)
}

.ins-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem
}

.ins-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem
}

.ins-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65
}

.ins-status {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .75rem;
    font-style: italic
}

/* ── CAREERS PREVIEW ── */
.careers-section {
    background: var(--light)
}

.careers-table-wrap {
    margin-top: 3rem;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 86, 219, .08);
    box-shadow: var(--sh2)
}

.careers-table-wrap table {
    width: 100%;
    border-collapse: collapse
}

.careers-table-wrap th {
    background: var(--grad);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 22px;
    text-align: left
}

.careers-table-wrap td {
    padding: 16px 22px;
    font-size: .9rem;
    color: var(--dark);
    border-top: 1px solid rgba(26, 86, 219, .06);
    vertical-align: middle
}

.careers-table-wrap tr:hover td {
    background: rgba(26, 86, 219, .03)
}

.dept-tag {
    background: rgba(26, 86, 219, .1);
    color: var(--p);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 86, 219, .08);
    color: var(--p);
    border: 1px solid rgba(26, 86, 219, .2);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none
}

.apply-btn:hover {
    background: var(--p);
    color: #fff;
    border-color: transparent
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .svc-grid,
    .ind-grid,
    .testi-grid,
    .ins-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .plat-grid {
        grid-template-columns: 1fr
    }

    .hiw-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:580px) {

    .svc-grid,
    .ind-grid,
    .testi-grid,
    .ins-grid,
    .about-vals {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr
    }
}