﻿
/* ======================================================
   UTTAMB SOLUTIONS LIMITED — 13-PLATFORM ENTERPRISE SITE
   Design: Deep Navy #0d2137 + Gold #f0c419
   Fonts: DM Serif Display (headings) + Outfit (body)
   ====================================================== */
:root {
    --navy: #0d2137;
    --navy2: #152e4d;
    --navy3: #1e4068;
    --gold: #f0c419;
    --gold2: #e8a020;
    --gold3: #fad55c;
    --cream: #f7f5ef;
    --off: #f0eeea;
    --border: #dde3ef;
    --txt: #1a2a3a;
    --muted: #5a6e86;
    --light: #8a9baf;
    --white: #ffffff;
    --r: 14px;
    --r2: 22px;
    --ease: .28s cubic-bezier(.4,0,.2,1);
    --sh: 0 2px 12px rgba(13,33,55,.07);
    --sh2: 0 8px 32px rgba(13,33,55,.12);
    --sh3: 0 20px 60px rgba(13,33,55,.15);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit',sans-serif;
    background: var(--cream);
    color: var(--txt);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display',serif;
    line-height: 1.12
}

a {
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--off)
}

::-webkit-scrollbar-thumb {
    background: var(--navy2);
    border-radius: 3px
}

/* ── LAYOUT ───────────────────────── */
.wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 5%
}

section {
    padding: 88px 0
}

/* ── BUTTONS ──────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Outfit',sans-serif;
    font-weight: 700;
    font-size: .875rem;
    letter-spacing: .03em;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--ease);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: .82rem 1.8rem;
    box-shadow: 0 4px 16px rgba(240,196,25,.35)
}

    .btn-gold:hover {
        background: var(--gold3);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(240,196,25,.5)
    }

.btn-ow {
    background: transparent;
    color: #fff;
    padding: .82rem 1.8rem;
    border: 2px solid rgba(255,255,255,.26)
}

    .btn-ow:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px)
    }

.btn-navy {
    background: var(--navy);
    color: #fff;
    padding: .82rem 1.8rem
}

    .btn-navy:hover {
        background: var(--navy2);
        transform: translateY(-2px)
    }

.btn-sm {
    padding: .56rem 1.25rem;
    font-size: .8rem
}

/* ── CHIP ──────────────────────────── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(240,196,25,.12);
    border: 1px solid rgba(240,196,25,.3);
    color: var(--gold2);
    padding: .3rem .9rem;
    border-radius: 100px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.chip-dk {
    background: rgba(240,196,25,.1);
    border-color: rgba(240,196,25,.24);
    color: var(--gold3)
}

/* ── SECTION HEADER ────────────────── */
.sh-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem
}

    .sh-center h2 {
        font-size: clamp(1.9rem,3vw,2.8rem);
        color: var(--navy);
        margin-bottom: .75rem
    }

        .sh-center h2 span {
            color: var(--navy3)
        }

        .sh-center h2 em {
            color: var(--gold2);
            font-style: italic
        }

    .sh-center p {
        color: var(--muted);
        font-size: .95rem;
        line-height: 1.82;
        max-width: 560px;
        margin: 0 auto
    }

/* ================================================================
   NAVBAR
================================================================ */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    background: rgba(13,33,55,.97);
    backdrop-filter: blur(18px) saturate(1.5);
    border-bottom: 1px solid rgba(240,196,25,.15);
    transition: height var(--ease);
}

    #nav.shrunk {
        height: 56px
    }

.nav-inner {
    max-width: 1220px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem
}

    .nav-logo img {
        height: 38px;
        width: 38px;
        object-fit: contain;
        border-radius: 8px
    }

.logo-name {
    color: #fff;
    font-family: 'DM Serif Display',serif;
    font-size: .95rem;
    display: block;
    line-height: 1.1
}

.logo-sub {
    color: rgba(255,255,255,.32);
    font-size: .52rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    display: block
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none
}

    .nav-links a {
        color: rgba(255,255,255,.6);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        transition: color var(--ease);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            border-radius: 1px;
            transition: width var(--ease)
        }

        .nav-links a:hover {
            color: var(--gold3)
        }

            .nav-links a:hover::after {
                width: 100%
            }

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: .42rem 1.05rem !important;
    border-radius: 7px !important;
    font-weight: 800 !important;
    box-shadow: 0 3px 10px rgba(240,196,25,.3);
    transition: all var(--ease) !important;
}

    .nav-cta::after {
        display: none !important
    }

    .nav-cta:hover {
        background: var(--gold3) !important;
        transform: translateY(-1px) !important
    }

/* ── HAMBURGER ────────────────────── */
.ham {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    width: 36px;
    height: 36px;
    align-items: flex-end;
    justify-content: center;
}

    .ham span {
        display: block;
        height: 2.5px;
        background: #fff;
        border-radius: 2px;
        transition: transform .3s,opacity .3s,width .25s
    }

        .ham span:nth-child(1) {
            width: 22px
        }

        .ham span:nth-child(2) {
            width: 15px
        }

        .ham span:nth-child(3) {
            width: 22px
        }

    .ham.open span:nth-child(1) {
        width: 22px;
        transform: translateY(7.5px) rotate(45deg)
    }

    .ham.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .ham.open span:nth-child(3) {
        width: 22px;
        transform: translateY(-7.5px) rotate(-45deg)
    }

/* ── MOBILE DRAWER ────────────────── */
.mob-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10,24,40,.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1),border-color .3s,padding .3s;
    border-bottom: 2px solid transparent;
    padding: 0 5%;
}

    .mob-drawer.open {
        max-height: 680px;
        border-color: var(--gold);
        padding: 1.2rem 5% 1.6rem
    }

    .mob-drawer a {
        color: rgba(255,255,255,.7);
        font-size: .88rem;
        font-weight: 700;
        padding: .68rem 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        text-transform: uppercase;
        letter-spacing: .06em;
        transition: color var(--ease);
        display: block;
    }

        .mob-drawer a:last-child {
            border: none;
            color: var(--gold3);
            padding-top: .9rem
        }

        .mob-drawer a:hover {
            color: var(--gold)
        }

/* ================================================================
   HERO
================================================================ */
#hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.024) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.024) 1px,transparent 1px);
        background-size: 54px 54px;
        pointer-events: none;
    }

.ho {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px)
}

.ho1 {
    width: 560px;
    height: 560px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle,rgba(240,196,25,.13),transparent 65%)
}

.ho2 {
    width: 380px;
    height: 380px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle,rgba(30,64,104,.85),transparent 68%)
}

.hero-wrap {
    max-width: 1220px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(240,196,25,.1);
    border: 1px solid rgba(240,196,25,.26);
    color: var(--gold3);
    padding: .35rem 1rem;
    border-radius: 100px;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    animation: fadeUp .7s ease both;
}

.hero-h1 {
    font-size: clamp(2.5rem,5vw,4.5rem);
    color: #fff;
    margin-bottom: 1.4rem;
    animation: fadeUp .7s .1s ease both
}

    .hero-h1 em {
        color: var(--gold3);
        font-style: italic
    }

.hero-sub {
    color: rgba(255,255,255,.54);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 510px;
    margin-bottom: 2rem;
    animation: fadeUp .7s .18s ease both
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .7s .26s ease both
}

.hero-stats {
    display: flex;
    gap: 1.8rem;
    margin-top: 2.8rem;
    flex-wrap: wrap;
    animation: fadeUp .7s .34s ease both
}

.hstat i {
    color: var(--gold);
    margin-right: .4rem;
    font-size: .9rem
}

.hstat span {
    color: rgba(255,255,255,.5);
    font-size: .77rem;
    font-weight: 600
}

.hero-panel {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r2);
    padding: 1.8rem;
    animation: slideLeft .8s .12s ease both;
}

.panel-lbl {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    margin-bottom: .85rem
}

.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem
}

.pi {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    padding: .8rem;
    transition: all var(--ease)
}

    .pi:hover {
        background: rgba(240,196,25,.09);
        border-color: rgba(240,196,25,.28);
        transform: translateY(-2px)
    }

.pi-ic {
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: .7rem;
    margin-bottom: .42rem
}

.pi-n {
    font-size: .64rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .04em;
    line-height: 1.3
}

.pi-t {
    font-size: .55rem;
    color: rgba(255,255,255,.3);
    margin-top: .04rem
}

/* ================================================================
   ABOUT
================================================================ */
#about {
    background: var(--off)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start
}

.about-card {
    background: var(--navy);
    border-radius: var(--r2);
    padding: 2.6rem 2.6rem 4.5rem;
    position: relative;
    overflow: visible
}

    .about-card::before {
        content: '';
        position: absolute;
        top: -70px;
        right: -70px;
        width: 210px;
        height: 210px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(240,196,25,.1),transparent 68%);
        pointer-events: none;
        z-index: 0
    }

.ac-logo-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1
}

    .ac-logo-row img {
        width: 42px;
        height: 42px;
        border-radius: 9px;
        object-fit: contain
    }

.ac-brand {
    color: #fff;
    font-family: 'DM Serif Display',serif;
    font-size: .98rem;
    line-height: 1.2
}

.ac-points {
    list-style: none;
    position: relative;
    z-index: 1
}

    .ac-points li {
        display: flex;
        align-items: flex-start;
        gap: .75rem;
        padding: .72rem 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        color: rgba(255,255,255,.68);
        font-size: .83rem;
        line-height: 1.6
    }

        .ac-points li:last-child {
            border: none
        }

        .ac-points li i {
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 3px
        }

.ac-badge {
    position: absolute;
    bottom: 1.4rem;
    right: 1.8rem;
    background: var(--gold);
    border-radius: 10px;
    padding: .8rem 1.4rem;
    box-shadow: 0 10px 30px rgba(240,196,25,.4);
    z-index: 2
}

    .ac-badge strong {
        display: block;
        font-family: 'DM Serif Display',serif;
        font-size: 1.8rem;
        color: var(--navy);
        line-height: 1
    }

    .ac-badge span {
        font-size: .58rem;
        font-weight: 800;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: .1em
    }

.about-body h2 {
    font-size: clamp(1.7rem,2.7vw,2.4rem);
    color: var(--navy);
    margin-bottom: .8rem
}

.about-body p {
    color: var(--muted);
    font-size: .93rem;
    line-height: 1.82;
    margin-bottom: 1rem
}

/* ================================================================
   SERVICES — 13 CARDS, FIXED NUMBERED BADGES
================================================================ */
#services {
    background: var(--white)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    /* row-gap MUST be ≥ badge height (14px) + breathing room */
    gap: 2.2rem 1.4rem;
}
    /* Extra top margin for first row so badges aren't clipped */
    .svc-grid > .sc {
        margin-top: 16px
    }

/* SERVICE CARD */
.sc {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 2rem 1.8rem 1.7rem;
    position: relative;
    overflow: visible; /* badge pokes above card top */
    transition: all var(--ease);
}

    .sc::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        border-radius: var(--r) var(--r) 0 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--ease);
    }

    .sc:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh3);
        background: var(--white);
        border-color: rgba(13,33,55,.15)
    }

        .sc:hover::before {
            transform: scaleX(1)
        }

    .sc.dark {
        background: var(--navy);
        border-color: var(--navy)
    }

        .sc.dark:hover {
            border-color: rgba(240,196,25,.3);
            background: var(--navy2)
        }

        .sc.dark .sc-title {
            color: #fff
        }

        .sc.dark .sc-desc, .sc.dark .sc-feat {
            color: rgba(255,255,255,.6)
        }

            .sc.dark .sc-feat i, .sc.dark .sc-link {
                color: var(--gold)
            }

        .sc.dark .sc-icon {
            background: rgba(240,196,25,.14)
        }

/* ★ NUMBER BADGE — ALWAYS VISIBLE ★
   Absolute-positioned above the card top edge.
   The card has overflow:visible so it shows.
   The parent grid has row-gap 2.2rem so every badge has space. */
.sc-num {
    position: absolute;
    top: -14px;
    left: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    border-radius: 7px;
    min-width: 32px;
    height: 26px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 4px 12px rgba(240,196,25,.45);
    z-index: 5;
    pointer-events: none;
}

.sc.dark .sc-num {
    background: var(--gold);
    color: var(--navy)
}

.sc-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: all var(--ease)
}

.sc:hover .sc-icon {
    transform: scale(1.07);
    background: var(--navy2)
}

.sc-title {
    font-size: .98rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .5rem;
    font-family: 'Outfit',sans-serif
}

.sc-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 1rem
}

.sc-feats {
    list-style: none;
    margin-bottom: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.sc-feat {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .74rem;
    color: var(--muted)
}

    .sc-feat i {
        color: var(--navy2);
        font-size: .65rem;
        flex-shrink: 0;
        margin-top: 3px
    }

.sc-link {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .75rem;
    font-weight: 800;
    color: var(--navy2);
    letter-spacing: .04em;
    transition: gap var(--ease)
}

    .sc-link:hover {
        gap: .65rem
    }

/* ================================================================
   DEEP-DIVE SECTIONS (Recruitment / Medical / School / SACCO / BSC)
================================================================ */
/* dark section */
.sec-dark {
    background: linear-gradient(140deg,var(--navy) 0%,var(--navy3) 100%);
    position: relative;
    overflow: hidden
}

    .sec-dark::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
        background-size: 52px 52px;
        pointer-events: none
    }

.sec-light {
    background: var(--off)
}

.sec-white {
    background: var(--white)
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1
}

    .two-col.center {
        align-items: center
    }

.sec-h {
    font-size: clamp(1.8rem,2.8vw,2.5rem);
    margin-bottom: .8rem
}

.sec-p {
    font-size: .92rem;
    line-height: 1.82
}

.sec-dark .sec-h {
    color: #fff
}

.sec-dark .sec-p {
    color: rgba(255,255,255,.56)
}

.sec-light .sec-h, .sec-white .sec-h {
    color: var(--navy)
}

.sec-light .sec-p, .sec-white .sec-p {
    color: var(--muted)
}

/* feature list */
.feat-stack {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.fi {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    padding: 1.1rem;
    transition: all var(--ease)
}

    .fi:hover {
        background: rgba(255,255,255,.09);
        border-color: rgba(240,196,25,.25);
        transform: translateX(5px)
    }

.fi-ic {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: .95rem;
    flex-shrink: 0
}

.fi-t {
    font-size: .87rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .16rem
}

.fi-d {
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6
}

/* light feature list */
.fi-lt {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 13px;
    padding: 1.1rem;
    transition: all var(--ease)
}

    .fi-lt:hover {
        border-color: rgba(13,33,55,.2);
        box-shadow: var(--sh2);
        transform: translateX(5px)
    }

    .fi-lt .fi-ic {
        background: var(--navy)
    }

    .fi-lt .fi-t {
        color: var(--navy)
    }

    .fi-lt .fi-d {
        color: var(--muted)
    }

/* tags */
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.4rem 0 1.8rem
}

.tag {
    background: rgba(240,196,25,.1);
    border: 1px solid rgba(240,196,25,.23);
    color: var(--gold3);
    padding: .3rem .8rem;
    border-radius: 100px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    gap: .38rem
}

/* stat box */
.stat-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .72rem
}

.sb {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 11px;
    padding: 1rem;
    text-align: center
}

    .sb strong {
        display: block;
        font-family: 'DM Serif Display',serif;
        font-size: 1.4rem;
        color: var(--gold3)
    }

    .sb span {
        font-size: .58rem;
        color: rgba(255,255,255,.35);
        text-transform: uppercase;
        letter-spacing: .1em
    }

.sb-lt {
    background: var(--white);
    border: 1.5px solid var(--border)
}

    .sb-lt strong {
        color: var(--navy)
    }

    .sb-lt span {
        color: var(--light)
    }

/* highlight box */
.hl-box {
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center
}

.hl-dark {
    background: rgba(240,196,25,.07);
    border: 1px solid rgba(240,196,25,.16)
}

.hl-lt {
    background: var(--off);
    border: 1.5px solid var(--border)
}

.hl-box i {
    font-size: 2.6rem;
    display: block;
    margin-bottom: .9rem
}

.hl-dark i {
    color: var(--gold)
}

.hl-lt i {
    color: var(--navy)
}

.hl-box h3 {
    font-family: 'DM Serif Display',serif;
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.hl-dark h3 {
    color: #fff
}

.hl-lt h3 {
    color: var(--navy)
}

.hl-box p {
    font-size: .79rem;
    line-height: 1.7
}

.hl-dark p {
    color: rgba(255,255,255,.54)
}

.hl-lt p {
    color: var(--muted)
}

/* quote box */
.quote-panel {
    padding: 1.3rem;
    border-radius: 12px
}

.qp-dark {
    background: rgba(240,196,25,.07);
    border: 1px solid rgba(240,196,25,.15)
}

.qp-lt {
    background: var(--white);
    border: 1.5px solid var(--border)
}

.quote-panel p {
    font-size: .79rem;
    line-height: 1.72;
    margin-bottom: .9rem
}

.qp-dark p {
    color: rgba(255,255,255,.58)
}

.qp-lt p {
    color: var(--muted)
}

/* job cards */
.jc-stack {
    display: flex;
    flex-direction: column;
    gap: .72rem
}

.jc {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 1.15rem;
    transition: all var(--ease)
}

    .jc:hover {
        background: rgba(255,255,255,.09);
        transform: translateY(-2px)
    }

.jc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: .5rem
}

.jc-co {
    font-size: .6rem;
    font-weight: 800;
    color: rgba(255,255,255,.38);
    text-transform: uppercase;
    letter-spacing: .1em
}

.jc-badge {
    background: rgba(240,196,25,.14);
    border: 1px solid rgba(240,196,25,.25);
    color: var(--gold3);
    font-size: .58rem;
    font-weight: 800;
    padding: .14rem .48rem;
    border-radius: 100px;
    letter-spacing: .07em;
    text-transform: uppercase
}

.jc-title {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .42rem
}

.jc-tags {
    display: flex;
    gap: .38rem;
    flex-wrap: wrap
}

.jt {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.52);
    font-size: .6rem;
    padding: .15rem .46rem;
    border-radius: 5px
}

/* cv box */
.cv-box {
    background: rgba(240,196,25,.08);
    border: 1px solid rgba(240,196,25,.18);
    border-radius: 13px;
    padding: 1.3rem
}

.cv-hd {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .8rem
}

.cv-ic {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: .82rem
}

.cv-tl {
    font-size: .82rem;
    font-weight: 800;
    color: #fff
}

.cv-sl {
    font-size: .58rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .09em;
    display: block
}

.cv-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: .32rem
}

.cv-lbl {
    font-size: .68rem;
    color: rgba(255,255,255,.52)
}

.cv-val {
    font-size: .8rem;
    font-weight: 900;
    color: var(--gold3)
}

.prog {
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 100px;
    margin-bottom: .55rem
}

.prog-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg,var(--gold2),var(--gold3))
}

/* platform grid */
.plat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.4rem
}

.plat {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 11px;
    padding: .9rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: all var(--ease)
}

    .plat:hover {
        transform: translateY(-3px);
        box-shadow: var(--sh2);
        border-color: rgba(13,33,55,.18)
    }

.plat-ic {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.plat-n {
    font-size: .76rem;
    font-weight: 800;
    color: var(--navy)
}

.plat-d {
    font-size: .62rem;
    color: var(--muted);
    margin-top: .04rem
}

/* ================================================================
   MARKETING
================================================================ */
#marketing .mkt-svcs {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.ms {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.05rem;
    transition: all var(--ease)
}

    .ms:hover {
        border-color: rgba(13,33,55,.2);
        box-shadow: var(--sh);
        transform: translateX(4px)
    }

.ms-ic {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .88rem;
    flex-shrink: 0
}

.ms-t {
    font-size: .83rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .15rem
}

.ms-d {
    font-size: .73rem;
    color: var(--muted);
    line-height: 1.6
}

/* ================================================================
   WHY + INTEGRATIONS + TESTIMONIALS
================================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.2rem
}

.wc {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.7rem;
    text-align: center;
    transition: all var(--ease)
}

    .wc:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh2);
        background: var(--white);
        border-color: rgba(13,33,55,.18)
    }

.wc-ic {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg,var(--navy),var(--navy3));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--gold);
    margin: 0 auto .9rem
}

.wc-t {
    font-size: .88rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .42rem
}

.wc-d {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.65
}

.int-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.1rem
}

.ic2 {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.35rem;
    text-align: center;
    transition: all var(--ease)
}

    .ic2:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh2);
        border-color: rgba(13,33,55,.16)
    }

.ic2-i {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto .8rem
}

.ic2-n {
    font-size: .76rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .18rem
}

.ic2-d {
    font-size: .66rem;
    color: var(--muted);
    line-height: 1.5
}

.tg {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.4rem
}

.tc {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r2);
    padding: 2.1rem;
    transition: all var(--ease)
}

    .tc:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh3)
    }

.tc-stars {
    color: var(--gold);
    font-size: .78rem;
    margin-bottom: .7rem
}

.tc-q {
    font-family: 'DM Serif Display',serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: .8;
    margin-bottom: .7rem
}

.tc-text {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 1.3rem
}

.tc-auth {
    display: flex;
    align-items: center;
    gap: .75rem
}

.tc-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--gold3);
    font-size: .8rem;
    flex-shrink: 0
}

.tc-n {
    font-size: .82rem;
    font-weight: 800;
    color: var(--navy)
}

.tc-r {
    font-size: .68rem;
    color: var(--light)
}

/* ================================================================
   CTA
================================================================ */
#cta {
    background: var(--navy);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
        background-size: 52px 52px;
        pointer-events: none
    }

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 5%
}

    .cta-inner h2 {
        font-size: clamp(1.9rem,3.5vw,3rem);
        color: #fff;
        margin-bottom: .9rem
    }

        .cta-inner h2 em {
            color: var(--gold3)
        }

    .cta-inner p {
        color: rgba(255,255,255,.52);
        font-size: .95rem;
        line-height: 1.8;
        margin-bottom: 2.4rem
    }

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.6rem
}

.cta-mail {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: rgba(255,255,255,.36);
    font-size: .8rem;
    transition: color var(--ease)
}

    .cta-mail:hover {
        color: var(--gold3)
    }

/* ================================================================
   CONTACT
================================================================ */
#contact {
    background: var(--off)
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start
}

.ct-info h2 {
    font-size: clamp(1.7rem,2.5vw,2.3rem);
    color: var(--navy);
    margin-bottom: .75rem
}

.ct-info p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 1.8rem
}

.ci {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.1rem
}

.ci-ic {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .9rem;
    flex-shrink: 0
}

.ci-lbl {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--light);
    display: block
}

.ci-val {
    font-size: .87rem;
    font-weight: 700;
    color: var(--navy)
}

    .ci-val a {
        color: inherit;
        transition: color var(--ease)
    }

        .ci-val a:hover {
            color: var(--navy3)
        }

.ct-form-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r2);
    padding: 2.4rem;
    box-shadow: var(--sh2)
}

    .ct-form-box h3 {
        font-family: 'DM Serif Display',serif;
        font-size: 1.2rem;
        color: var(--navy);
        margin-bottom: 1.4rem
    }

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem
}

.fg {
    margin-bottom: .9rem
}

    .fg label {
        display: block;
        font-size: .66rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: .4rem
    }

    .fg input, .fg select, .fg textarea {
        width: 100%;
        padding: .74rem .95rem;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        font-family: 'Outfit',sans-serif;
        font-size: .85rem;
        color: var(--txt);
        background: var(--off);
        outline: none;
        transition: border-color var(--ease),box-shadow var(--ease);
        appearance: none;
        -webkit-appearance: none;
    }

        .fg input:focus, .fg select:focus, .fg textarea:focus {
            border-color: var(--navy2);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(30,64,104,.1)
        }

    .fg textarea {
        resize: vertical;
        min-height: 108px
    }

.fsub {
    width: 100%;
    padding: .9rem;
    background: var(--navy);
    color: var(--gold3);
    border: none;
    border-radius: 9px;
    font-family: 'Outfit',sans-serif;
    font-size: .87rem;
    font-weight: 800;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

    .fsub:hover {
        background: var(--navy2);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(13,33,55,.28)
    }

/* ================================================================
   FOOTER
================================================================ */
footer {
    background: #070f1c;
    color: rgba(255,255,255,.4);
    padding: 60px 5% 24px
}

.f-wrap {
    max-width: 1220px;
    margin: 0 auto
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.2rem;
    margin-bottom: 2.8rem
}

.f-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .9rem
}

    .f-brand img {
        width: 34px;
        height: 34px;
        border-radius: 7px;
        object-fit: contain
    }

.f-brand-n {
    color: #fff;
    font-family: 'DM Serif Display',serif;
    font-size: .9rem
}

.f-desc {
    font-size: .76rem;
    line-height: 1.75;
    max-width: 220px;
    margin-bottom: .9rem
}

.f-email {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    color: var(--gold3);
    font-size: .76rem;
    transition: color var(--ease)
}

    .f-email:hover {
        color: #fff
    }

.f-col-t {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem
}

.f-lnks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .46rem
}

    .f-lnks a {
        color: rgba(255,255,255,.4);
        font-size: .76rem;
        transition: color var(--ease)
    }

        .f-lnks a:hover {
            color: var(--gold3)
        }

.f-bottom {
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .72rem;
    flex-wrap: wrap;
    gap: .7rem;
    max-width: 1220px;
    margin: 0 auto
}

    .f-bottom a {
        color: var(--gold3)
    }

/* ── SCROLL TOP ────────────────────── */
.stt {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    transform: translateY(14px);
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    box-shadow: 0 4px 14px rgba(240,196,25,.4)
}

    .stt.show {
        opacity: 1;
        transform: translateY(0)
    }

    .stt:hover {
        background: var(--gold3);
        transform: translateY(-3px)
    }

/* ── REVEAL ────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease,transform .6s ease
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0)
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media(max-width:1100px) {
    .svc-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .int-grid {
        grid-template-columns: 1fr 1fr
    }

    .f-grid {
        grid-template-columns: 1fr 1fr
    }

    .panel-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .ham {
        display: flex
    }

    .hero-wrap {
        grid-template-columns: 1fr
    }

    .hero-panel {
        display: none
    }

    .about-grid, .two-col, .ct-grid {
        grid-template-columns: 1fr
    }

    .tg {
        grid-template-columns: 1fr
    }

    .f-grid {
        grid-template-columns: 1fr 1fr
    }

    section {
        padding: 68px 0
    }
}

@media(max-width:640px) {
    section {
        padding: 56px 0
    }

    .svc-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .int-grid {
        grid-template-columns: 1fr 1fr
    }

    .frow, .plat-grid, .stat-box {
        grid-template-columns: 1fr
    }

    .f-grid {
        grid-template-columns: 1fr
    }

    .hero-h1 {
        font-size: 2.3rem
    }

    .hero-btns, .cta-btns {
        flex-direction: column;
        align-items: flex-start
    }

    .cta-btns {
        align-items: center
    }

    .f-bottom {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:420px) {
    .why-grid, .int-grid {
        grid-template-columns: 1fr
    }
}
