.cs-wrap,
.cs-wrap *,
.cs-wrap *::before,
.cs-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.cs-wrap {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    width: 100vw;
    max-width: 100vw;
    display: block;
    overflow-x: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
}

.cs-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.cs-sec {
    padding: 5rem 0
}

/* ── Keyframes ── */
@keyframes cs-fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes cs-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

@keyframes cs-float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    40% {
        transform: translateY(-8px) rotate(.4deg)
    }

    70% {
        transform: translateY(-4px) rotate(-.2deg)
    }
}

@keyframes cs-pulse-ring {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(2.4);
        opacity: 0
    }
}

@keyframes cs-glow {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(0, 82, 224, .32)
    }

    50% {
        box-shadow: 0 4px 32px rgba(0, 82, 224, .65), 0 0 0 6px rgba(0, 82, 224, .1)
    }
}

@keyframes cs-shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(200%)
    }
}

@keyframes cs-scan {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(500%)
    }
}

@keyframes cs-count {
    from {
        opacity: 0;
        transform: scale(.8) translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes cs-slide-in {
    from {
        opacity: 0;
        transform: translateX(-12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes cs-bar-grow {
    from {
        width: 0
    }

    to {
        width: var(--tw)
    }
}

@keyframes cs-typing {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ── Reveal ── */
.cs-rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.cs-rv.cs-in {
    opacity: 1;
    transform: none
}

.cs-rv-l {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.cs-rv-l.cs-in {
    opacity: 1;
    transform: none
}

.cs-rv-r {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.cs-rv-r.cs-in {
    opacity: 1;
    transform: none
}

/* ── Buttons ── */
.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .88rem;
    font-weight: 600;
    padding: .75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .12s, box-shadow .2s;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

.cs-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-btn-blue {
    background: #0052e0;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 82, 224, .38), 0 0 0 1px rgba(0, 82, 224, .5);
    animation: cs-glow 3s 2s ease-in-out infinite
}

.cs-btn-blue:hover {
    background: #0040c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .52)
}

.cs-btn-blue svg {
    stroke: #fff
}

.cs-btn-blue.cs-lg {
    font-size: .92rem;
    padding: .85rem 1.7rem
}

.cs-btn-ghost-d {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px)
}

.cs-btn-ghost-d:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-1px)
}

.cs-btn-ghost-d svg {
    stroke: currentColor
}

.cs-btn-ghost-l {
    background: transparent;
    color: #0052e0;
    border: 1.5px solid rgba(0, 82, 224, .3)
}

.cs-btn-ghost-l:hover {
    background: #e8f0ff;
    transform: translateY(-1px)
}

.cs-btn-ghost-l svg {
    stroke: currentColor
}

/* ── Labels ── */
.cs-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #0052e0;
    margin-bottom: .7rem
}

.cs-chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cs-chip.cs-lt {
    color: rgba(148, 187, 255, .85)
}

.cs-h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.032em;
    color: #0f172a;
    margin-top: .5rem
}

.cs-h2.cs-wh {
    color: #fff
}

/* ══════════════════════════
   1. HERO
══════════════════════════ */
.cs-hero {
    background: #060d1a;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0
}

.cs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 80% at 55% 30%, #000 30%, transparent 100%);
    pointer-events: none
}

.cs-hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: min(800px, 80vw);
    height: min(800px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .22) 0%, rgba(99, 102, 241, .1) 40%, transparent 70%);
    pointer-events: none
}

.cs-hg2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: min(600px, 70vw);
    height: min(600px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, .1) 0%, transparent 65%);
    pointer-events: none
}

.cs-hg3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 90vw);
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 82, 224, .06) 0%, transparent 65%);
    pointer-events: none
}

.cs-hero-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .3
}

.cs-hero-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 224, .6), transparent);
    animation: cs-scan 8s linear infinite
}

.cs-hero-body {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.cs-hero-left {
    padding-bottom: 5rem
}

.cs-hero-left>* {
    animation: cs-fadeUp .6s ease both
}

.cs-hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.cs-hero-left>*:nth-child(2) {
    animation-delay: .12s
}

.cs-hero-left>*:nth-child(3) {
    animation-delay: .2s
}

.cs-hero-left>*:nth-child(4) {
    animation-delay: .28s
}

.cs-hero-left>*:nth-child(5) {
    animation-delay: .36s
}

.cs-crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.cs-crumb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .15s
}

.cs-crumb a:hover {
    color: rgba(255, 255, 255, .7)
}

.cs-crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.cs-svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 82, 224, .14);
    border: 1px solid rgba(0, 82, 224, .35);
    border-radius: 100px;
    padding: .32rem 1rem .32rem .45rem;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(148, 196, 255, .9);
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 82, 224, .1);
    backdrop-filter: blur(6px)
}

.cs-svc-badge-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(0, 82, 224, .5)
}

.cs-svc-badge-ico svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.cs-hero-h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.042em;
    color: #fff;
    margin-bottom: 1.1rem
}

.cs-hl {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 55%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cs-hero-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    max-width: 44ch;
    margin-bottom: 2rem
}

.cs-hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem
}

.cs-proof-row {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap
}

.cs-proof-pill {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .28rem .8rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
    transition: border-color .2s, background .2s
}

.cs-proof-pill:hover {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08)
}

.cs-proof-pill strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 700
}

.cs-pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 6px #4ade80
}

/* ── Hero Right: Strategy Dashboard ── */
.cs-hero-right {
    animation: cs-fadeUp .65s .18s ease both;
    position: relative;
    padding-bottom: 4rem
}

.cs-strat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .03) 100%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    padding: 1.5rem;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .1)
}

.cs-strat-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .22), transparent 65%)
}

.cs-strat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
    animation: cs-shimmer 6s ease-in-out 2s infinite;
    pointer-events: none
}

.cs-sc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.cs-sc-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .28)
}

.cs-sc-live {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .62rem;
    font-weight: 600;
    color: #4ade80
}

.cs-sc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    position: relative;
    flex-shrink: 0
}

.cs-sc-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #4ade80;
    opacity: .4;
    animation: cs-pulse-ring 2.2s ease-out infinite
}

/* Funnel pipeline visual */
.cs-funnel {
    display: flex;
    flex-direction: column;
    gap: .38rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.cs-funnel-row {
    border-radius: 9px;
    padding: .55rem .8rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: transform .18s, filter .18s;
    cursor: default
}

.cs-funnel-row:hover {
    transform: translateX(4px)
}

.cs-f-tofu {
    background: rgba(0, 82, 224, .18);
    border: 1px solid rgba(0, 82, 224, .3)
}

.cs-f-mofu {
    background: rgba(79, 70, 229, .16);
    border: 1px solid rgba(79, 70, 229, .28)
}

.cs-f-bofu {
    background: rgba(168, 85, 247, .16);
    border: 1px solid rgba(168, 85, 247, .28)
}

.cs-f-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cs-f-tofu .cs-f-icon {
    background: rgba(0, 82, 224, .3)
}

.cs-f-mofu .cs-f-icon {
    background: rgba(79, 70, 229, .3)
}

.cs-f-bofu .cs-f-icon {
    background: rgba(168, 85, 247, .3)
}

.cs-f-icon svg {
    width: 10px;
    height: 10px;
    stroke: rgba(255, 255, 255, .9);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-f-stage {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .5);
    width: 40px;
    flex-shrink: 0
}

.cs-f-title {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
    flex: 1
}

.cs-f-count {
    font-size: .62rem;
    color: rgba(255, 255, 255, .38);
    flex-shrink: 0
}

.cs-f-bar {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, .08);
    border-radius: 100px;
    overflow: hidden;
    flex-shrink: 0
}

.cs-f-fill {
    height: 100%;
    border-radius: 100px;
    width: 0%;
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1)
}

.cs-f-tofu .cs-f-fill {
    background: linear-gradient(90deg, #0052e0, #4f46e5)
}

.cs-f-mofu .cs-f-fill {
    background: linear-gradient(90deg, #4f46e5, #7c3aed)
}

.cs-f-bofu .cs-f-fill {
    background: linear-gradient(90deg, #7c3aed, #a855f7)
}

/* Content calendar mini strip */
.cs-sc-slbl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: rgba(255, 255, 255, .24);
    margin-bottom: .5rem;
    position: relative;
    z-index: 1
}

.cs-cal-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .38rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem
}

.cs-cal-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: .5rem .45rem;
    text-align: center;
    transition: background .18s, transform .18s
}

.cs-cal-item:hover {
    background: rgba(0, 82, 224, .18);
    transform: translateY(-2px)
}

.cs-cal-wk {
    font-size: .55rem;
    color: rgba(255, 255, 255, .28);
    margin-bottom: .2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.cs-cal-type {
    font-size: .6rem;
    font-weight: 700;
    padding: .12rem .35rem;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: .2rem
}

.cs-ct-pillar {
    background: rgba(0, 82, 224, .25);
    color: rgba(148, 196, 255, .9)
}

.cs-ct-cluster {
    background: rgba(79, 70, 229, .22);
    color: rgba(167, 139, 250, .9)
}

.cs-ct-compare {
    background: rgba(234, 179, 8, .18);
    color: rgba(253, 224, 71, .9)
}

.cs-ct-case {
    background: rgba(34, 197, 94, .16);
    color: rgba(134, 239, 172, .9)
}

.cs-cal-title {
    font-size: .58rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.35;
    display: block
}

/* Stats row */
.cs-sc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    position: relative;
    z-index: 1
}

.cs-ss {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 10px;
    padding: .65rem .5rem;
    text-align: center;
    transition: background .2s, transform .2s
}

.cs-ss:hover {
    background: rgba(0, 82, 224, .16);
    transform: translateY(-2px)
}

.cs-ss-v {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    animation: cs-count .7s .4s both
}

.cs-ss-l {
    font-size: .56rem;
    color: rgba(255, 255, 255, .32);
    margin-top: 3px
}

.cs-ss-c {
    font-size: .56rem;
    color: #4ade80;
    margin-top: 2px;
    font-weight: 600
}

.cs-float-pill {
    position: absolute;
    bottom: -2rem;
    left: .875rem;
    background: rgba(8, 15, 32, .94);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    min-width: 230px;
    animation: cs-float 5s ease-in-out infinite;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .45), 0 0 0 1px rgba(0, 82, 224, .12);
    backdrop-filter: blur(16px);
    z-index: 2
}

.cs-fp-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(34, 197, 94, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cs-fp-ico svg {
    width: 13px;
    height: 13px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-fp-t {
    font-size: .72rem;
    font-weight: 700;
    color: #fff
}

.cs-fp-s {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 1px
}

/* ══════════════════════════
   2. WHAT WE DO
══════════════════════════ */
.cs-wwd-sec {
    background: #fff;
    border-bottom: 1px solid #e2e8f0
}

.cs-sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.cs-sh2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.cs-sh2 p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.cs-wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem
}

.cs-wwd-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    cursor: default
}

.cs-wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052e0, #818cf8, #f472b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.cs-wwd-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 18px 48px rgba(0, 82, 224, .1);
    transform: translateY(-6px)
}

.cs-wwd-card:hover::before {
    transform: scaleX(1)
}

.cs-wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem
}

.cs-wwd-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, box-shadow .2s
}

.cs-wwd-ico svg {
    width: 20px;
    height: 20px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.cs-wwd-card:hover .cs-wwd-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(0, 82, 224, .4)
}

.cs-wwd-card:hover .cs-wwd-ico svg {
    stroke: #fff
}

.cs-wwd-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .2s
}

.cs-wwd-card:hover .cs-wwd-num {
    color: #dce8ff
}

.cs-wwd-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.cs-wwd-desc {
    font-size: .83rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: .9rem
}

.cs-wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.cs-wt {
    font-size: .63rem;
    font-weight: 600;
    color: #0052e0;
    background: #e8f0ff;
    padding: .18rem .55rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.cs-wwd-card:hover .cs-wt {
    background: #0052e0;
    color: #fff
}

/* ══════════════════════════
   3. WHY IT MATTERS
══════════════════════════ */
.cs-why-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.cs-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: stretch
}

.cs-why-copy {
    font-size: .88rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 1.4rem
}

.cs-why-copy strong {
    color: #0f172a;
    font-weight: 700
}

.cs-why-checks {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.cs-wck {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: #475569;
    line-height: 1.55;
    padding: .5rem .65rem;
    border-radius: 10px;
    background: rgba(0, 82, 224, .04);
    border: 1px solid rgba(0, 82, 224, .07);
    transition: background .15s, border-color .15s
}

.cs-wck:hover {
    background: rgba(0, 82, 224, .08);
    border-color: rgba(0, 82, 224, .14)
}

.cs-wck-tick {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background .15s
}

.cs-wck-tick svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-wck:hover .cs-wck-tick {
    background: #0052e0
}

.cs-wck:hover .cs-wck-tick svg {
    stroke: #fff
}

.cs-why-right {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    justify-content: space-between
}

.cs-wstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
    grid-auto-rows: 1fr
}

.cs-wstat {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.4rem 1.5rem 1.65rem;
    transition: border-color .22s, box-shadow .22s, transform .2s;
    position: relative;
    overflow: hidden
}

.cs-wstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0052e0, #818cf8);
    opacity: .3;
    transition: opacity .2s, width .2s
}

.cs-wstat:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.cs-wstat:hover::before {
    opacity: 1;
    width: 5px
}

.cs-wstat-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .3rem;
    transition: all .2s
}

.cs-wstat:hover .cs-wstat-val {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cs-wstat-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .2rem
}

.cs-wstat-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.4
}

.cs-wstat-wide {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: border-color .22s, box-shadow .22s, transform .2s;
    flex-shrink: 0
}

.cs-wstat-wide:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.cs-wstat-wide-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 82, 224, .35)
}

.cs-wstat-wide-ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-wstat-wide-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0
}

.cs-wstat-wide-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px
}

.cs-wstat-wide-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.35
}

.cs-quote-card {
    background: linear-gradient(145deg, #0052e0, #4338ca);
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden
}

.cs-quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 5rem;
    color: rgba(255, 255, 255, .1);
    font-family: serif;
    line-height: 1;
    pointer-events: none
}

.cs-qc-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.72;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 1
}

.cs-qc-by {
    display: flex;
    align-items: center;
    gap: .7rem;
    position: relative;
    z-index: 1
}

.cs-qc-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1.5px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.cs-qc-name {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.cs-qc-role {
    font-size: .65rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px
}

.cs-qc-stars {
    font-size: .72rem;
    color: #fbbf24;
    margin-left: auto;
    letter-spacing: 1px
}

/* ══════════════════════════
   4. CONTENT FRAMEWORK — white
══════════════════════════ */
.cs-framework-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.cs-framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center
}

/* Funnel diagram visual */
.cs-funnel-visual {
    background: #f0f5ff;
    border: 1.5px solid #dce8ff;
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden
}

.cs-funnel-visual::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .09), transparent 65%)
}

.cs-fv-head {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .45rem
}

.cs-fv-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    display: block;
    box-shadow: 0 0 8px rgba(0, 82, 224, .5)
}

.cs-funnel-diagram {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.cs-fd-stage {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .875rem;
    transition: transform .2s, box-shadow .2s;
    cursor: default
}

.cs-fd-stage:hover {
    transform: translateY(-2px)
}

.cs-fd-tofu {
    background: linear-gradient(135deg, rgba(0, 82, 224, .08), rgba(0, 82, 224, .04));
    border: 1.5px solid rgba(0, 82, 224, .15)
}

.cs-fd-tofu:hover {
    box-shadow: 0 6px 20px rgba(0, 82, 224, .1)
}

.cs-fd-mofu {
    background: linear-gradient(135deg, rgba(79, 70, 229, .08), rgba(79, 70, 229, .04));
    border: 1.5px solid rgba(79, 70, 229, .15)
}

.cs-fd-mofu:hover {
    box-shadow: 0 6px 20px rgba(79, 70, 229, .1)
}

.cs-fd-bofu {
    background: linear-gradient(135deg, rgba(168, 85, 247, .08), rgba(168, 85, 247, .04));
    border: 1.5px solid rgba(168, 85, 247, .15)
}

.cs-fd-bofu:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, .1)
}

.cs-fd-ico {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cs-fd-tofu .cs-fd-ico {
    background: rgba(0, 82, 224, .12)
}

.cs-fd-mofu .cs-fd-ico {
    background: rgba(79, 70, 229, .12)
}

.cs-fd-bofu .cs-fd-ico {
    background: rgba(168, 85, 247, .12)
}

.cs-fd-ico svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-fd-tofu .cs-fd-ico svg {
    stroke: #0052e0
}

.cs-fd-mofu .cs-fd-ico svg {
    stroke: #4f46e5
}

.cs-fd-bofu .cs-fd-ico svg {
    stroke: #7c3aed
}

.cs-fd-label {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .18rem
}

.cs-fd-tofu .cs-fd-label {
    color: #0052e0
}

.cs-fd-mofu .cs-fd-label {
    color: #4f46e5
}

.cs-fd-bofu .cs-fd-label {
    color: #7c3aed
}

.cs-fd-title {
    font-size: .85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .18rem
}

.cs-fd-formats {
    display: flex;
    flex-wrap: wrap;
    gap: .28rem
}

.cs-fd-fmt {
    font-size: .6rem;
    font-weight: 600;
    padding: .12rem .42rem;
    border-radius: 100px
}

.cs-fd-tofu .cs-fd-fmt {
    color: #0052e0;
    background: rgba(0, 82, 224, .1)
}

.cs-fd-mofu .cs-fd-fmt {
    color: #4f46e5;
    background: rgba(79, 70, 229, .1)
}

.cs-fd-bofu .cs-fd-fmt {
    color: #7c3aed;
    background: rgba(168, 85, 247, .1)
}

.cs-fd-stats {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #dce8ff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem
}

.cs-fds {
    text-align: center;
    padding: .5rem .3rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dce8ff
}

.cs-fds-v {
    font-size: 1rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.03em;
    line-height: 1
}

.cs-fds-l {
    font-size: .58rem;
    color: #94a3b8;
    margin-top: 3px
}

.cs-framework-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.cs-framework-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.cs-fl {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: #475569;
    line-height: 1.5;
    padding: .5rem .65rem;
    border-radius: 10px;
    background: rgba(0, 82, 224, .04);
    border: 1px solid rgba(0, 82, 224, .07);
    transition: background .15s, border-color .15s
}

.cs-fl:hover {
    background: rgba(0, 82, 224, .08);
    border-color: rgba(0, 82, 224, .14)
}

.cs-fl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 6px rgba(0, 82, 224, .4)
}

/* ══════════════════════════
   5. PROCESS — dark
══════════════════════════ */
.cs-proc-sec {
    background: #0f172a;
    position: relative;
    overflow: hidden
}

.cs-proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.cs-proc-sec::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: min(380px, 50vw);
    height: min(380px, 50vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .14) 0%, transparent 65%);
    pointer-events: none
}

.cs-proc-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.cs-steps-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem;
    position: relative;
    z-index: 1
}

.cs-steps-row::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 224, .4) 15%, rgba(0, 82, 224, .4) 85%, transparent);
    z-index: 0
}

.cs-step-box {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 1.4rem 1.15rem 1.3rem;
    text-align: center;
    transition: border-color .22s, background .22s, transform .2s
}

.cs-step-box:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(0, 82, 224, .28);
    transform: translateY(-4px)
}

.cs-step-box.cs-on {
    background: rgba(0, 82, 224, .12);
    border-color: rgba(0, 82, 224, .35)
}

.cs-step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    border: 2px solid rgba(255, 255, 255, .13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .9rem;
    font-size: .82rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .32);
    transition: all .22s
}

.cs-step-box:hover .cs-step-circle {
    border-color: rgba(0, 82, 224, .4);
    color: rgba(148, 196, 255, .7)
}

.cs-step-box.cs-on .cs-step-circle {
    background: #0052e0;
    border-color: #0052e0;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(0, 82, 224, .2), 0 0 0 12px rgba(0, 82, 224, .07);
    animation: cs-glow 3s ease-in-out infinite
}

.cs-step-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem;
    line-height: 1.35
}

.cs-step-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.55
}

/* ══════════════════════════
   6. DELIVERABLES — off-blue
══════════════════════════ */
.cs-deliv-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.cs-deliv-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.cs-deliv-head p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.cs-deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem
}

.cs-dcard {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s
}

.cs-dcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052e0, #818cf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.cs-dcard:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 18px 48px rgba(0, 82, 224, .1);
    transform: translateY(-7px)
}

.cs-dcard:hover::before {
    transform: scaleX(1)
}

.cs-dcard-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .95rem;
    transition: background .2s, box-shadow .2s
}

.cs-dcard-ico svg {
    width: 19px;
    height: 19px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.cs-dcard:hover .cs-dcard-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(0, 82, 224, .4)
}

.cs-dcard:hover .cs-dcard-ico svg {
    stroke: #fff
}

.cs-dcard h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.cs-dcard p {
    font-size: .81rem;
    color: #475569;
    line-height: 1.68;
    margin-bottom: .85rem
}

.cs-dlist {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.cs-dl {
    display: flex;
    align-items: flex-start;
    gap: .48rem;
    font-size: .75rem;
    color: #475569
}

.cs-dl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 5px rgba(0, 82, 224, .35)
}

/* ══════════════════════════
   7. FAQ
══════════════════════════ */
.cs-faq-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.cs-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start
}

.cs-faq-left .cs-h2 {
    margin: .65rem 0 .85rem
}

.cs-faq-left>p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.85rem
}

.cs-faq-cta {
    background: #f0f5ff;
    border: 1.5px solid #dce8ff;
    border-radius: 16px;
    padding: 1.4rem 1.5rem
}

.cs-faq-cta h4 {
    font-size: .94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem
}

.cs-faq-cta p {
    font-size: .79rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1rem
}

.cs-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.cs-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.cs-faq-item.cs-open {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 6px 24px rgba(0, 82, 224, .08)
}

.cs-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: background .15s
}

.cs-faq-q:hover {
    background: #f8faff
}

.cs-faq-qt {
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45
}

.cs-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s
}

.cs-faq-icon svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-faq-item.cs-open .cs-faq-icon {
    background: #0052e0;
    transform: rotate(45deg)
}

.cs-faq-item.cs-open .cs-faq-icon svg {
    stroke: #fff
}

.cs-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.22, 1, .36, 1)
}

.cs-faq-item.cs-open .cs-faq-a {
    max-height: 280px
}

.cs-faq-ai {
    padding: .15rem 1.2rem 1rem;
    font-size: .82rem;
    color: #475569;
    line-height: 1.75
}

.cs-faq-ai strong {
    color: #0f172a;
    font-weight: 700
}

/* ══════════════════════════
   8. RESULTS + AUDIT
══════════════════════════ */
.cs-results-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff
}

.cs-results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem;
    align-items: start
}

.cs-result-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.cs-rcard {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    display: grid;
    grid-template-columns: 90px 2px 1fr;
    align-items: center;
    gap: 1.1rem;
    transition: box-shadow .22s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden
}

.cs-rcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0052e0, #818cf8);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.cs-rcard:hover {
    box-shadow: 0 8px 28px rgba(0, 82, 224, .1);
    transform: translateY(-3px);
    border-color: rgba(0, 82, 224, .18)
}

.cs-rcard:hover::before {
    transform: scaleY(1)
}

.cs-rcard-num {
    font-size: 2rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right;
    transition: all .2s
}

.cs-rcard:hover .cs-rcard-num {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cs-rcard-div {
    width: 2px;
    height: 36px;
    background: #e8f0ff;
    border-radius: 2px;
    justify-self: center
}

.cs-rcard-title {
    font-size: .84rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .18rem;
    line-height: 1.42
}

.cs-rcard-sub {
    font-size: .73rem;
    color: #94a3b8;
    margin-bottom: .35rem
}

.cs-rcard-tag {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .61rem;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    padding: .14rem .5rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.cs-rcard:hover .cs-rcard-tag {
    background: #0052e0;
    color: #fff
}

.cs-rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cs-audit-cta {
    background: linear-gradient(145deg, #060d1a 0%, #0f1f3d 100%);
    border-radius: 18px;
    padding: 1.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2)
}

.cs-audit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 82, 224, .13) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none
}

.cs-audit-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .2), transparent 65%);
    pointer-events: none
}

.cs-ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.cs-ac-ey {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(148, 196, 255, .65);
    display: flex;
    align-items: center;
    gap: .32rem
}

.cs-ac-ey svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cs-ac-ttl {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.022em
}

.cs-ac-ttl span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cs-ac-sub {
    font-size: .77rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.62
}

.cs-ac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: #0052e0;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .86rem;
    font-weight: 600;
    padding: .78rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 82, 224, .38);
    transition: background .15s, transform .12s;
    border: none;
    cursor: pointer;
    animation: cs-glow 3s 1.5s ease-in-out infinite
}

.cs-ac-btn:hover {
    background: #0040c0;
    transform: translateY(-2px)
}

.cs-ac-btn svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-ac-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .62);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    padding: .7rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .09);
    transition: background .15s
}

.cs-ac-ph:hover {
    background: rgba(255, 255, 255, .1)
}

.cs-ac-ph svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-ac-trust {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.cs-ac-ti {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .66rem;
    color: rgba(255, 255, 255, .28)
}

.cs-ac-ti svg {
    width: 9px;
    height: 9px;
    stroke: rgba(74, 222, 128, .65);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ── Responsive ── */
@media(max-width:1200px) {
    .cs-results-layout {
        grid-template-columns: 1fr 290px
    }
}

@media(max-width:1024px) {
    .cs-hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 0
    }

    .cs-hero-right {
        display: none
    }

    .cs-hero-left {
        padding-bottom: 4.5rem
    }

    .cs-sh {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .cs-sh2 {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .cs-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cs-wstat-grid {
        grid-template-columns: 1fr 1fr
    }

    .cs-framework-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cs-proc-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem
    }

    .cs-steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .cs-steps-row::before {
        display: none
    }

    .cs-deliv-head {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .cs-deliv-grid {
        grid-template-columns: 1fr 1fr
    }

    .cs-faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cs-results-layout {
        grid-template-columns: 1fr 260px
    }
}

@media(max-width:768px) {
    .cs-sec {
        padding: 4rem 0
    }

    .cs-hero-body {
        padding-top: 3rem
    }

    .cs-hero-btns {
        flex-direction: column;
        gap: .6rem
    }

    .cs-btn,
    .cs-btn-blue,
    .cs-btn-ghost-d {
        width: 100%;
        justify-content: center
    }

    .cs-wwd-grid {
        grid-template-columns: 1fr
    }

    .cs-wstat-grid {
        grid-template-columns: 1fr
    }

    .cs-steps-row {
        grid-template-columns: 1fr
    }

    .cs-deliv-grid {
        grid-template-columns: 1fr
    }

    .cs-results-layout {
        grid-template-columns: 1fr
    }

    .cs-rcard {
        grid-template-columns: 75px 2px 1fr;
        gap: .9rem;
        padding: 1.1rem 1.25rem
    }

    .cs-rcard-num {
        font-size: 1.7rem
    }

    .cs-funnel-diagram {
        gap: .38rem
    }
}

@media(max-width:480px) {
    .cs-hero-h1 {
        font-size: 2rem
    }

    .cs-h2 {
        font-size: 1.5rem
    }

    .cs-sh>div:last-child,
    .cs-sh2>div:last-child,
    .cs-deliv-head>div:last-child {
        display: none
    }

    .cs-btn-ghost-l {
        width: 100%;
        justify-content: center
    }

    .cs-cal-strip {
        grid-template-columns: 1fr 1fr
    }
}

.fp {
    padding: 10px;
    font-size: small;
}