*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

:root {
    --ink: #0D0D0D;
    --ink2: #3A3A38;
    --ink3: #808078;
    --paper: #F5F4EF;
    --paper2: #ECEAE3;
    --white: #FFFFFF;
    --rule: #D8D6CF;
    --brand: #526ab2;
    --navy2: #323272;
    --navy-tint: #EEEEF8;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --max: 1200px;
    --gutter: 2.5rem;
}

body {
    font-family: var(--sans) !important;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

/* ─── TOPBAR ─── */
.topbar {
    background: var(--brand);
    padding: .5rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem
}

.topbar-ticker {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    flex: 1;
    max-width: 900px
}

.topbar-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
    margin-right: 1.5rem
}

.ticker-track {
    display: flex;
    gap: 3rem;
    animation: ticker 28s linear infinite;
    white-space: nowrap
}

.ticker-track span {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .04em
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ─── NAV ─── */
nav {
    /* background: var(--white);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 200; */
    padding: 0 var(--gutter)
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 2rem
}

.nav-logo span {
    font-weight: 300;
    font-style: italic
}

.nav-links {
    display: flex;
    gap: .125rem;
    list-style: none;
    align-items: center
}

.nav-links a {
    font-size: 15px;
    color: var(--ink2);
    text-decoration: none;
    font-weight: 500;
    /* padding: .375rem .7rem; */
    border-radius: 5px;
    transition: background .12s, color .12s
}

.nav-links a:hover {
    background: var(--paper);
    color: var(--brand)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem
}

.nav-cta {
    background: #526ab2;
    color: #fff;
    padding: 12px 40px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s;
    text-transform: capitalize;
    transition: .5s;
}

.nav-cta:hover {
    background: #334c98;
    transform: translateY(-5px);
}

/* ─── HERO ─── */
.hero {
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 0 var(--gutter)
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 6rem;
    align-items: center;
    min-height: 88vh;
    padding: 5rem 0 0
}

.hero-left {
    padding-bottom: 5rem
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--rule);
    border-radius: 100px;
    padding: .3rem .875rem .3rem .5rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink2);
    margin-bottom: 13px;
    background: var(--brand);
    color: #fff;
    border: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    flex-shrink: 0
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.75rem, 6vw, 70px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--brand);
    font-weight: 300
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--ink2);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300
}

.hero-sub strong {
    color: var(--ink);
    font-weight: 600
}

.hero-btns {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap
}

.btn-solid {
    background: var(--brand);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: .9375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    transition: background .15s;
}

.btn-solid:hover {
    background: var(--navy2)
}

.btn-ghost {
    color: var(--ink);
    padding: .7rem 1.25rem;
    font-size: .9375rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    border-bottom: 1.5px solid var(--rule);
    transition: border-color .15s, color .15s
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand)
}

.hero-proof {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    flex-wrap: wrap
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: .2rem
}

.proof-n {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -.04em;
    line-height: 1
}

.proof-l {
    font-size: .8rem;
    color: var(--ink3);
    font-weight: 400;
    line-height: 1.3
}

/* hero right — stacked cards */
.hero-right {
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--rule);
    border-radius: 12px;
    overflow: hidden;
    align-self: stretch;
    margin: 3rem 0
}

.hcard {
    background: var(--white);
    padding: 1.625rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    transition: background .15s
}

.hcard:hover {
    background: var(--navy-tint)
}

.hcard-tag {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: .625rem
}

.hcard-headline {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -.01em
}

.hcard-stat {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -.04em;
    margin-top: .75rem;
    line-height: 1
}

.hcard-stat small {
    font-size: .875rem;
    font-weight: 400;
    color: var(--ink3);
    font-family: var(--sans);
    letter-spacing: 0;
    margin-left: .3rem
}

/* ─── CLIENTS STRIP ─── */
.clients {
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1.375rem var(--gutter)
}

.clients-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

.clients-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink3);
    white-space: nowrap;
    flex-shrink: 0
}

.clients-sep {
    width: 1px;
    height: 18px;
    background: var(--rule);
    flex-shrink: 0
}

.clients-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cl {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    opacity: .2;
    transition: opacity .2s;
    letter-spacing: -.01em;
    cursor: default
}

.cl:hover {
    opacity: .55
}

/* ─── SHARED ─── */
.section {
    padding: 6rem var(--gutter)
}

.wrap {
    max-width: var(--max);
    margin: 0 auto
}

.eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .875rem
}

.display {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.1;
    color: var(--ink)
}

.display em {
    font-style: italic;
    font-weight: 300;
    color: var(--brand)
}

.body-lg {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300
}

.rule-top {
    border-top: 1px solid var(--rule);
    margin-top: 3.5rem;
    padding-top: 3.5rem
}

/* ─── WHAT WE DO ─── */
.wwd {
    background: var(--white)
}

.wwd-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: end
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden
}

.wwd-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    transition: background .15s;
    cursor: default
}

.wwd-card:hover {
    background: var(--paper)
}

.wwd-num {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 1.125rem
}

.wwd-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin-bottom: .625rem
}

.wwd-card p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.68;
    font-weight: 300
}

.wwd-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--brand);
    margin-top: .875rem;
    text-decoration: none;
    opacity: 0;
    transition: opacity .2s
}

.wwd-card:hover .wwd-link {
    opacity: 1
}

/* ─── SECTORS — dark ─── */
.sectors {
    background: var(--brand)
}

.sectors .eyebrow {
    color: rgba(255, 255, 255, .35)
}

.sectors .display {
    color: #fff
}

.sectors .body-lg {
    color: rgba(255, 255, 255, .5)
}

.sector-scroll {
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 3.5rem
}

.sc {
    background: rgba(255, 255, 255, .04);
    padding: 1.5rem 1.625rem;
    flex: 1;
    min-width: 200px;
    transition: background .15s;
    cursor: default;
    border: none
}

.sc:hover {
    background: rgba(255, 255, 255, .1)
}

.sc-icon {
    font-size: 1.375rem;
    margin-bottom: .75rem
}

.sc-name {
    font-size: .9375rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.3
}

.sc-desc {
    font-size: 14px;
    color: rgb(255 255 255 / 53%);
    margin-top: .3rem;
    line-height: 1.5;
    font-weight: 300;
}

/* ─── USE CASES ─── */
.usecases {
    background: var(--paper)
}

.uc-head {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: end
}

.uc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden
}

.uc-card {
    background: var(--paper);
    padding: 2rem 1.625rem;
    transition: background .18s;
    cursor: default
}

.uc-card:hover {
    background: var(--white)
}

.uc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    font-size: 1rem
}

.uc-card h4 {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    line-height: 1.3;
    margin-bottom: .5rem
}

.uc-card p {
    font-size: .8375rem;
    color: var(--ink2);
    line-height: 1.65;
    font-weight: 300
}

/* ─── WHY MGPR — alternating text/dark ─── */
.why {
    background: var(--ink)
}

.why .display {
    color: var(--paper)
}

.why .eyebrow {
    color: rgba(255, 255, 255, .3)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .08);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4rem
}

.why-card {
    background: rgba(255, 255, 255, .03);
    padding: 2.25rem 2rem;
    transition: background .18s
}

.why-card:hover {
    background: rgba(255, 255, 255, .07)
}

.why-n {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .05);
    letter-spacing: -.06em;
    line-height: 1;
    margin-bottom: 1.375rem
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    margin-bottom: .5rem;
    letter-spacing: -.01em
}

.why-card p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    font-weight: 300
}

/* ─── TESTIMONIALS ─── */
.test {
    background: var(--white);
    border-top: 1px solid var(--rule)
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem
}

.tcard {
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color .18s, transform .18s
}

.tcard:hover {
    border-color: var(--brand);
    transform: translateY(-2px)
}

.tcard-q {
    font-family: var(--serif);
    font-size: 1.0625rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem
}

.tcard-q::before {
    content: '\201C';
    color: var(--brand);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: .5rem;
    font-style: normal
}

.tcard-meta {
    border-top: 1px solid var(--rule);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: .875rem
}

.tcard-av {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy-tint);
    border: 1px solid rgba(37, 37, 96, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--brand);
    flex-shrink: 0;
    overflow: hidden;
}

.tcard-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
}

.tcard-role {
    font-size: 13px;
    color: #000000;
    font-weight: 300;
    margin-top: .1rem;
}

/* ─── MEDIA LOGOS ─── */
.media {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule)
}

.media h3 {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -.02em
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.75rem 2rem;
    max-width: 820px;
    margin: 0 auto;
    align-items: center;
    justify-items: center
}

.lw {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    opacity: .18;
    transition: opacity .2s;
    cursor: default;
    text-align: center;
    letter-spacing: -.01em
}

.lw:hover {
    opacity: .55
}

.lw.sm {
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-family: var(--sans)
}

.lw.xl {
    font-size: 1.125rem
}

/* ─── CASE STUDIES ─── */
.cases {
    background: var(--white)
}

.cases-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: end
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.ccard {
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .18s, transform .18s
}

.ccard:hover {
    border-color: var(--brand);
    transform: translateY(-2px)
}

.ccard-top {
    background: var(--brand);
    padding: 2rem 2rem 1.75rem
}

.ccard-tag {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: .5rem
}

.ccard-client {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1
}

.ccard-body {
    padding: 2rem
}

.ccard-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.25rem
}

.cs-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: -.05em;
    line-height: 1;
    display: block
}

.cs-lbl {
    font-size: .75rem;
    color: var(--ink3);
    font-weight: 400;
    margin-top: .2rem;
    line-height: 1.3
}

.ccard-body p {
    font-size: .875rem;
    color: var(--ink2);
    line-height: 1.7;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rule);
    font-weight: 300
}

/* ─── CTA ─── */
.cta {
    background: var(--paper);
    border-top: 1px solid var(--rule)
}

.cta-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center
}

.cta-left .display {
    margin-bottom: 1.25rem
}

.cta-left p {
    font-size: 1.0625rem;
    color: var(--ink2);
    line-height: 1.75;
    font-weight: 300;
    max-width: 480px
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.form-row {
    display: flex;
    gap: .75rem
}

.form-inp {
    flex: 1;
    padding: .8125rem 1rem;
    border: 1.5px solid var(--rule);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: .9375rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .2s
}

.form-inp:focus {
    border-color: var(--brand)
}

.form-inp::placeholder {
    color: var(--ink3)
}

.form-textarea {
    padding: .8125rem 1rem;
    border: 1.5px solid var(--rule);
    border-radius: 6px;
    font-family: var(--sans);
    font-size: .9375rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    resize: none;
    height: 110px;
    transition: border-color .2s;
    width: 100%
}

.form-textarea:focus {
    border-color: var(--brand)
}

.form-textarea::placeholder {
    color: var(--ink3)
}

.form-submit {
    background: var(--brand);
    color: #fff;
    padding: .8125rem 2rem;
    border-radius: 6px;
    border: none;
    font-family: var(--sans);
    font-size: .9375rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background .15s
}

.form-submit:hover {
    background: var(--navy2)
}

/* ─── LOCAL PRESENCE ─── */
.reach {
    background: #252e4d;
    padding: 6rem var(--gutter);
}

.reach-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center
}

.reach-eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 1.25rem
}

.reach-line {
    display: block;
    width: 28px;
    height: 1.5px;
    background: rgba(255, 255, 255, .25);
    flex-shrink: 0
}

.reach-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.1;
    margin-bottom: 1.375rem
}

.reach-body {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    font-weight: 300
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 2rem
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: .45rem .875rem;
    font-size: .8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    transition: all .18s;
    cursor: default
}

.city-tag:hover {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.city-tag svg {
    opacity: .5;
    flex-shrink: 0
}

/* network panel */
.network-panel {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 2rem
}

.network-label {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem
}

.network-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    flex-shrink: 0
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .07);
    border-radius: 10px;
    overflow: hidden
}

.network-card {
    background: #1f2949;
    padding: 2.25rem 2rem;
    transition: background .18s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
}

.network-card:hover {
    background: #252e4d;
}

.network-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.06em;
    line-height: 1
}

.network-desc {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

@media(max-width:900px) {
    .reach-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }
}

/* ─── WHO WE ARE ─── */
.whoweare {
    background: #0f1424;
    padding: 0 0 0 var(--gutter);
    overflow: hidden;
}

.wwa-inner {
    max-width: calc(var(--max) + var(--gutter));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* min-height: 560px; */
    align-items: center;
}
.wwa-team-icon img {
    border-radius: 15px;
}

.wwa-image {
    position: relative;
    overflow: hidden;
    min-height: 480px
}

.wwa-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1c40 0%, #252560 40%, #1a1e3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.wwa-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.wwa-team-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1
}

.wwa-team-icon svg {
    opacity: .15
}

.wwa-team-text {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .02em
}

.wwa-content {
    padding: 5rem 4rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.wwa-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.75rem
}

.wwa-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.875rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem
}

.wwa-title em {
    font-style: italic;
    font-weight: 300;
    color: #C8A84B
}

.wwa-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.5rem
}

.wwa-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.wwa-stat-n {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .25rem
}

.wwa-stat-l {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.wwa-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
    padding: .65rem 1.25rem;
    border-radius: 6px;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .18s;
    margin-bottom: 2.5rem;
    width: fit-content
}

.wwa-cta:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .25)
}

@media(max-width:900px) {
    .wwa-inner {
        grid-template-columns: 1fr
    }

    .wwa-image {
        min-height: 300px
    }

    .wwa-content {
        padding: 3.5rem var(--gutter)
    }
}

/* ─── FOOTER ─── */
footer {
    background: var(--ink);
    padding: 100px 0 0 0;
}

.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-brand {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: .875rem
}

.footer-brand span {
    font-weight: 300;
    font-style: italic
}

.footer-tagline {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.7;
    font-weight: 300;
    max-width: 260px;
}

.footer-col h5 {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 1rem
}

.footer-col a {
    display: block;
    font-size: .875rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-bottom: .5rem;
    font-weight: 300;
    transition: color .15s
}

.footer-col a:hover {
    color: rgba(255, 255, 255, .85)
}

.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .2)
}

.footer-links {
    display: flex;
    gap: 1.5rem
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
    text-decoration: none;
    transition: color .15s
}

.footer-links a:hover {
    color: rgba(255, 255, 255, .6)
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.fade-up.visible {
    opacity: 1;
    transform: none
}


/* my code start */
.her_form_outer h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--brand);
    font-style: italic;
}

.her_form_outer {
    background: #fff;
    border: solid 1px #d8d6cf;
    border-radius: 15px;
    padding: 25px 25px;
    border-top: solid 4px var(--brand);
}

.form-inp {
    height: 55px;
}

.form-inp button.form-submit {
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
}

.her_form_outer button.form-submit {
    width: 100%;
}

/* nav bar start */
/* ======================
   NAVBAR
====================== */

nav{
    position:sticky;
    top:0;
    background:#fff;
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
    padding-top: 12px;
    padding-bottom: 12px;
}

.nav-inner{
    max-width:1400px;
    margin:auto;
    /* padding:15px 20px; */
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.nav-logo img {
    width: 188px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin: 0;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-weight:500;
}

/* ======================
   DROPDOWN
====================== */

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    background:#fff;
    min-width:240px;
    padding:10px 0;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.3s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    display:block;
    padding:12px 20px;
}

.dropdown-menu a:hover{
    background:#f4f4f4;
}

/* ======================
   CTA
====================== */

/* ======================
   HAMBURGER
====================== */

.menu-toggle{
    display:none;
    width:30px;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:#000;
    margin:6px 0;
    transition:.4s;
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}
/* nav bar end */
.topbar p {
    color: #fff;
    margin: 0;
}

/* hreo counter start */
/* .hero-proof{
    background:#f5f2ea;
    border-top:1px solid #e6e1d7;
    border-bottom:1px solid #e6e1d7;
} */
 .hero_counter {
  border: 0;
  padding: 0;
 }

.proof-card {
    /* padding: 30px 0px; */
    transition: .3s ease;
    /* border-right: solid 1px #d8d6cf; */
}
.hero-proof .col-md-3 {
    padding: 0;
    margin-top: 20px;
}
.counter_bnr {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 90px;
}

.proof-card:hover{
    transform:translateY(-5px);
}

.proof-number {
    font-family: 'Fraunces', serif;
    font-size: 53px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 12px;
}

.proof-text {
    /* font-family: 'DM Sans', sans-serif; */
    font-size: 17px;
    color: #000000;
    margin: 0;
    /* text-transform: uppercase; */
}

@media(max-width:768px){

    .proof-number{
        font-size:38px;
    }

    .proof-text{
        font-size:13px;
    }

    .proof-card{
        padding:20px 10px;
    }

}
/* hero counter end */
/* brand logo start */
span.c_l img {
    width: 100%;
}

span.c_l {
    width: 10%;
}
/* brand logo end */
.tcard-av img {
    width: 100%;
}

.logowall {
    max-width: initial;
    gap: 25px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: solid 1px #d8d6cf;
    border-radius: 12px;
    padding: 33px 5px;
    background: #fff;
}
.lws img {
    width: 100%;
    height: 75px;
    object-fit: cover;
}
.bran_item {
    width: 12%;
}

/* case study start */
.ccardtop img {
    width: 100%;
    height: 329px;
    object-fit: cover;
}
.ccard .ccard-body {
    padding: 10px 20px;
}

.ccard .ccard-body h3 {
    font-size: 25px;
}

.ccard .ccard-body p {font-size: 16px;font-weight: 400;}
/* case study end  */
/* footer start */
.footer-brand img {
    width: 200px;
}
.footergrid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
}

.footer_about {
    width: 24%;
}

.footer-col {
    width: 17%;
}

.quickl {
    width: 12%;
}

.industryl {
    /* width: 30%; */
}

.footer-col h5 {
    color: rgba(255, 255, 255, 0.81);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 32px;
}

.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-col ul li a {
    color: #c4c4c4;
    font-size: 15px;
    font-weight: 300;
}

.contactl {
    width: 27%;
}
.contactl ul li i.bi {
    /* position: absolute; */
    left: 0;
    color: #fff;
    background: #121212;
    border: solid 1px #222222;
    border-radius: 6px;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
}
.contactl ul li {
    position: relative;
}
.contactl ul li a {
    display: flex;
    align-items: center;
    gap: 13px;
}
.contactl ul li a span {
    width: 80%;
}
.contactl ul li:hover i.bi {
    background: var(--brand);
    border-color: var(--brand);
}
.footer-col ul li:hover a {
    color: var(--brand);
}
.footer-col h5:before {
    content: "";
    background: var(--brand);
    width: 40px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -7px;
}
.disctric_name h5 {color: rgba(255, 255, 255, 0.81);font-size: 18px;text-transform: capitalize;font-weight: 600;position: relative;margin-bottom: 20px;}
.add_list {
    border-top: solid 1px #ffffff3b;
    padding-top: 60px;
    margin-top: 60px;
}
.full_address p {
    color: #c4c4c4;
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
}
p.footer-copy {
    color: #c4c4c4;
    font-size: 15px;
    font-weight: 300;
    margin: 0;
}

.copyrigh_set {
    background: #000;
    padding: 15px 0;
    margin-top: 100px;
}

.footerlinks ul li a {color: #c4c4c4;text-decoration: none;}

.footerlinks ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footerlinks ul li {
    display: inline-block;
    padding: 0 9px;
    font-weight: 300;
    font-size: 15px;
}

.footerlinks ul li:hover a {
    color: var(--brand);
}
/* footer end */

/*smooth scrolling start*/

/*smooth scrolling end*/
/* my code end */

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
        padding: 4rem 0 3rem
    }

    .hero-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 10px;
        margin: 0
    }

    .wwd-head,
    .cases-head,
    .uc-head {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem
    }
}

@media(max-width:991px){

.menu-toggle{
    display:block;
    z-index:1001;
}

.nav-right{
    display:none;
}

.nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100vh;

    background:#fff;

    flex-direction:column;
    align-items:flex-start;
    gap:0;

    padding:100px 25px;
    overflow-y:auto;

    transition:.5s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
}

.nav-links.active{
    right:0;
}

.nav-links li{
    width:100%;
}

.nav-links a{
    display:block;
    width:100%;
    padding:14px 0;
}

.dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;

    display:none;

    box-shadow:none;
    padding-left:15px;
    background:#f8f8f8;
    border-radius:10px;
    margin-bottom:10px;
}

.dropdown.active .dropdown-menu{
    display:block;
    animation:slideDown .3s ease;
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
}

@media(max-width:768px) {
    :root {
        --gutter: 1.25rem
    }

    /* nav .nav-links {
        display: none
    } */

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem)
    }

    .wwd-grid {
        grid-template-columns: 1fr
    }

    .sector-scroll {
        flex-direction: column
    }

    .uc-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid,
    .test-grid,
    .cases-grid {
        grid-template-columns: 1fr
    }

    .logo-wall {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .form-row {
        flex-direction: column
    }

    .hero-proof {
        gap: 1.5rem
    }

    .hero-right {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .uc-grid {
        grid-template-columns: 1fr
    }

    .hero-right {
        grid-template-columns: 1fr
    }

    .logo-wall {
        grid-template-columns: repeat(2, 1fr)
    }
}