:root {
    --blue: #0052e0;
    --blue-d: #0040c0;
    --blue-l: #e8f0ff;
    --dark: #060d1a;
    --dark2: #0f172a;
    --off: #f0f5ff;
    --text: #0f172a;
    --text2: #475569;
    --text3: #94a3b8;
    --border: #e2e8f0;
    --boff: #dce8ff;
    --green: #16a34a;
    --amber: #f59e0b;
    --font: "Plus Jakarta Sans", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

svg {
    display: block
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.sec {
    padding: 4.5rem 0
}

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease
}

.rv.in {
    opacity: 1;
    transform: none
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .28
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes barIn {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

@keyframes countUp {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    padding: .72rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    transition: background .15s, transform .12s, box-shadow .18s;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

.btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 82, 224, .3)
}

.btn-blue:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 82, 224, .42)
}

.btn-blue svg {
    stroke: #fff
}

.btn-blue.lg {
    font-size: .92rem;
    padding: .82rem 1.6rem
}

.btn-ghost-d {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .13)
}

.btn-ghost-d:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-1px)
}

.btn-ghost-d svg {
    stroke: currentColor
}

.btn-ghost-l {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid rgba(0, 82, 224, .3)
}

.btn-ghost-l:hover {
    background: var(--blue-l);
    transform: translateY(-1px)
}

.btn-ghost-l svg {
    stroke: currentColor
}

/* chip / label */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: .6rem
}

.chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.chip.lt {
    color: rgba(148, 187, 255, .8)
}

/* headings */
h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1rem
}

h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em
}

h2.wh {
    color: #fff
}

.hl {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hl-green {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* hero shell */
.hero {
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none
}

.hg1 {
    position: absolute;
    top: -200px;
    right: -140px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .18) 0%, rgba(99, 102, 241, .06) 45%, transparent 70%);
    pointer-events: none
}

.hg2 {
    position: absolute;
    bottom: -140px;
    left: -70px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, .08) 0%, transparent 65%);
    pointer-events: none
}

.hero-body {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero-left {
    padding-bottom: 4.5rem
}

.hero-left>* {
    animation: fadeUp .52s ease both
}

.hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.hero-left>*:nth-child(2) {
    animation-delay: .10s
}

.hero-left>*:nth-child(3) {
    animation-delay: .17s
}

.hero-left>*:nth-child(4) {
    animation-delay: .24s
}

.hero-left>*:nth-child(5) {
    animation-delay: .31s
}

.hero-right {
    animation: fadeUp .58s .14s ease both;
    position: relative;
    padding-bottom: 3.5rem
}

.crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 1.4rem;
    flex-wrap: wrap
}

.crumb a {
    color: rgba(255, 255, 255, .38)
}

.crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .2);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 82, 224, .14);
    border: 1px solid rgba(0, 82, 224, .3);
    border-radius: 100px;
    padding: .28rem .95rem .28rem .42rem;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(148, 196, 255, .9);
    margin-bottom: .6rem
}

.svc-badge-ico {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.svc-badge-ico svg {
    width: 9px;
    height: 9px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .48);
    max-width: 42ch;
    margin-bottom: 1.85rem
}

.hero-btns {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.proof-row {
    display: flex;
    gap: .42rem;
    flex-wrap: wrap
}

.proof-pill {
    display: flex;
    align-items: center;
    gap: .32rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    padding: .25rem .7rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .43)
}

.proof-pill strong {
    color: rgba(255, 255, 255, .82);
    font-weight: 700
}

.pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0
}

.wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 64px;
    overflow: hidden
}

.wave svg {
    width: 100%;
    height: 100%;
    display: block
}

.fp {
    padding: 9px 1px 14px 0px;
    font-size: small;
}

.float-pill {
    position: absolute;
    bottom: .4rem;
    left: .875rem;
    background: rgba(10, 18, 38, .93);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 11px;
    padding: .55rem .825rem;
    display: flex;
    align-items: center;
    gap: .48rem;
    min-width: 200px;
    animation: floatY 4s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    backdrop-filter: blur(12px)
}

.fp-ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(34, 197, 94, .13);
    border: 1px solid rgba(34, 197, 94, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fp-ico svg {
    width: 12px;
    height: 12px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fp-t {
    font-size: .7rem;
    font-weight: 700;
    color: #fff
}

.fp-s {
    font-size: .58rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 1px
}

/* ══ HERO CARD — Content Score Dashboard ══ */
.cs-hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 1.35rem;
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden
}

.cs-hero-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .14), transparent 65%)
}

.cs-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem
}

.cs-card-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .26)
}

.cs-card-live {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .6rem;
    font-weight: 600;
    color: #4ade80
}

.cs-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite
}

/* score ring */
.cs-ring-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .875rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    margin-bottom: .875rem
}

.cs-ring {
    position: relative;
    width: 58px;
    height: 58px;
    flex-shrink: 0
}

.cs-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.cs-ring-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em
}

.cs-score-info {
    flex: 1
}

.cs-score-grade {
    font-size: .78rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: .12rem
}

.cs-score-sub {
    font-size: .64rem;
    color: rgba(255, 255, 255, .32);
    line-height: 1.45
}

/* content elements list */
.cs-elem-lbl {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .24);
    margin-bottom: .45rem
}

.cs-elem-rows {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .875rem
}

.cs-elem-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 7px;
    padding: .4rem .65rem
}

.cs-elem-ico {
    font-size: .8rem;
    flex-shrink: 0
}

.cs-elem-name {
    font-size: .68rem;
    color: rgba(255, 255, 255, .55);
    flex: 1
}

.cs-elem-pill {
    font-size: .54rem;
    font-weight: 700;
    padding: .1rem .38rem;
    border-radius: 3px;
    white-space: nowrap
}

.cs-ok {
    background: rgba(22, 163, 74, .2);
    color: #4ade80
}

.cs-warn {
    background: rgba(245, 158, 11, .18);
    color: #fbbf24
}

.cs-miss {
    background: rgba(220, 38, 38, .18);
    color: #f87171
}

.cs-elem-val {
    font-size: .58rem;
    color: rgba(255, 255, 255, .22);
    margin-left: .3rem
}

/* bar section */
.cs-bars {
    margin-bottom: .25rem
}

.cs-bar-lbl-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: .3rem
}

.cs-bar-name {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38)
}

.cs-bar-pct {
    font-size: .6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7)
}

.cs-track {
    height: 5px;
    background: rgba(255, 255, 255, .07);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: .5rem
}

.cs-fill {
    height: 100%;
    border-radius: 100px;
    --w: 0%;
    width: 0
}

.cs-fill.animated {
    animation: barIn 1.1s .5s cubic-bezier(.4, 0, .2, 1) forwards
}

.cs-fill-blue {
    background: linear-gradient(90deg, var(--blue), #4f46e5)
}

.cs-fill-green {
    background: linear-gradient(90deg, #10b981, #06b6d4)
}

.cs-fill-amber {
    background: linear-gradient(90deg, #f59e0b, #ef4444)
}

/* card footer */
.cs-card-ft {
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .4rem
}

.cs-ft-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    animation: blink 1.6s infinite
}

.cs-ft-txt {
    font-size: .6rem;
    color: rgba(148, 196, 255, .45);
    font-family: monospace
}

/* ══ TICKER ══ */
.cs-ticker {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    overflow: hidden;
    position: relative
}

.cs-ticker::before,
.cs-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none
}

.cs-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent)
}

.cs-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent)
}

.cs-tick-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite
}

.cs-tick-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0 1.75rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--text2)
}

.cs-tick-item svg {
    width: 12px;
    height: 12px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

.cs-tick-dot {
    color: var(--border);
    padding: 0 .4rem
}

/* ══ STATS BAND ══ */
.cs-stats {
    background: var(--off);
    border-bottom: 1px solid var(--boff);
}

.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.cs-stat {
    padding: 1.75rem 1.25rem;
    text-align: center;
    border-right: 1px solid var(--boff)
}

.cs-stat:last-child {
    border-right: none
}

.cs-stat-ico {
    font-size: 1.4rem;
    margin-bottom: .6rem
}

.cs-stat-val {
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.05em;
    color: var(--text);
    line-height: 1;
    margin-bottom: .28rem
}

.cs-stat-val span {
    color: var(--blue)
}

.cs-stat-lbl {
    font-size: .74rem;
    color: var(--text2);
    line-height: 1.45;
    max-width: 15ch;
    margin: 0 auto
}

/* ══ WHAT WE DO ══ */
.cs-wwd-sec {
    background: #fff
}

.cs-wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem
}

.cs-wwd-card {
    background: var(--off);
    border: 1.5px solid var(--boff);
    border-radius: 16px;
    padding: 1.5rem;
    transition: border-color .2s, box-shadow .2s, transform .18s;
    cursor: default
}

.cs-wwd-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .08);
    transform: translateY(-3px)
}

.cs-wwd-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background .18s
}

.cs-wwd-ico svg {
    width: 18px;
    height: 18px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .18s
}

.cs-wwd-card:hover .cs-wwd-ico {
    background: var(--blue)
}

.cs-wwd-card:hover .cs-wwd-ico svg {
    stroke: #fff
}

.cs-wwd-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .38rem
}

.cs-wwd-desc {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: .875rem
}

.cs-wwd-tag {
    display: inline-flex;
    align-items: center;
    background: var(--blue-l);
    color: var(--blue);
    font-size: .62rem;
    font-weight: 700;
    padding: .18rem .6rem;
    border-radius: 100px
}

/* ══ WHY CONTENT SEO ══ */
.cs-why-sec {
    background: var(--off);
    border-top: 1px solid var(--boff);
    border-bottom: 1px solid var(--boff)
}

.cs-why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.cs-why-left h2 {
    margin-bottom: .75rem
}

.cs-why-left p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 1.5rem
}

.cs-why-list {
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.cs-why-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .9rem 1rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 13px;
    transition: border-color .2s, box-shadow .18s, transform .18s;
    cursor: default
}

.cs-why-item:hover {
    border-color: rgba(0, 82, 224, .28);
    box-shadow: 0 4px 18px rgba(0, 82, 224, .07);
    transform: translateX(4px)
}

.cs-wi-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cs-wi-ico svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cs-wi-title {
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: .2rem
}

.cs-wi-desc {
    font-size: .74rem;
    color: var(--text2);
    line-height: 1.55
}

/* right visual — content funnel */
.cs-funnel {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.cs-funnel-stage {
    border-radius: 13px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: border-color .2s, box-shadow .18s
}

.cs-funnel-stage:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 20px rgba(0, 82, 224, .07)
}

.cs-fs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;
    font-size: .72rem;
    font-weight: 700
}

.cs-fs-body {
    padding: .625rem 1rem .875rem;
    background: #fff
}

.cs-fs-types {
    display: flex;
    gap: .38rem;
    flex-wrap: wrap
}

.cs-fs-tag {
    font-size: .6rem;
    font-weight: 600;
    padding: .18rem .55rem;
    border-radius: 100px;
    background: rgba(0, 82, 224, .07);
    color: var(--blue)
}

.cs-fs-stat {
    font-size: .6rem;
    font-weight: 700;
    color: var(--text3)
}

/* TOFU */
.cs-tofu .cs-fs-head {
    background: #eff6ff;
    color: #1d4ed8
}

/* MOFU */
.cs-mofu .cs-fs-head {
    background: #f5f3ff;
    color: #5b21b6
}

/* BOFU */
.cs-bofu .cs-fs-head {
    background: #f0fdf4;
    color: #15803d
}

/* ══ PROCESS ══ */
.cs-proc-sec {
    background: var(--dark2);
    position: relative;
    overflow: hidden
}

.cs-proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.cs-proc-sec::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .12) 0%, transparent 65%);
    pointer-events: none
}

.cs-proc-sh {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1
}

.cs-proc-sh h2 {
    margin-bottom: .6rem
}

.cs-proc-sh p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .38);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.7
}

.cs-steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1
}

.cs-steps-row::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 82, 224, .35), rgba(99, 102, 241, .25));
    z-index: 0
}

.cs-step {
    position: relative;
    z-index: 1;
    text-align: center
}

.cs-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #4f46e5);
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 5px rgba(0, 82, 224, .12), 0 4px 16px rgba(0, 82, 224, .35)
}

.cs-step-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 13px;
    padding: 1.1rem .875rem
}

.cs-step-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(0, 82, 224, .3)
}

.cs-step-title {
    font-size: .84rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .38rem
}

.cs-step-desc {
    font-size: .72rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.6
}

.cs-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: .6rem;
    justify-content: center
}

.cs-step-tag {
    font-size: .58rem;
    font-weight: 600;
    color: rgba(148, 196, 255, .6);
    background: rgba(0, 82, 224, .14);
    border: 1px solid rgba(0, 82, 224, .22);
    border-radius: 100px;
    padding: .1rem .45rem
}

/* timeline bar */
.cs-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 1.25rem 2rem;
    flex-wrap: wrap
}

.cs-tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 72px;
    position: relative
}

.cs-tl-item::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 35%;
    color: rgba(255, 255, 255, .15);
    font-size: .8rem
}

.cs-tl-item:last-child::after {
    display: none
}

.cs-tl-day {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em
}

.cs-tl-lbl {
    font-size: .62rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .16rem
}

/* ══ CONTENT TYPES / FORMATS ══ */
.cs-types-sec {
    background: #fff
}

.cs-sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.cs-sh p {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.65;
    margin-top: .5rem
}

.cs-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.cs-type-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, transform .18s, box-shadow .2s;
    cursor: default
}

.cs-type-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 82, 224, .09)
}

.cs-tc-head {
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.cs-tc-ico {
    font-size: 1.25rem;
    flex-shrink: 0
}

.cs-tc-name {
    font-size: .88rem;
    font-weight: 700
}

.cs-tc-sub {
    font-size: .7rem;
    color: var(--text3);
    margin-top: .1rem
}

.cs-tc-body {
    padding: .875rem 1.25rem 1.1rem;
    background: #fff;
    border-top: 1px solid var(--border)
}

.cs-tc-desc {
    font-size: .78rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: .75rem
}

.cs-tc-metrics {
    display: flex;
    gap: .875rem
}

.cs-tc-m {
    text-align: center
}

.cs-tc-mv {
    font-size: .92rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.03em
}

.cs-tc-ml {
    font-size: .6rem;
    color: var(--text3);
    margin-top: .1rem
}

/* card color accents */
.cs-ct1 .cs-tc-head {
    background: #eff6ff
}

.cs-ct2 .cs-tc-head {
    background: #f5f3ff
}

.cs-ct3 .cs-tc-head {
    background: #f0fdf4
}

.cs-ct4 .cs-tc-head {
    background: #fff7ed
}

.cs-ct5 .cs-tc-head {
    background: #fef2f2
}

.cs-ct6 .cs-tc-head {
    background: #f0f9ff
}

/* ══ TOOLS ══ */
.cs-tools-sec {
    background: var(--off);
    border-top: 1px solid var(--boff);
    border-bottom: 1px solid var(--boff)
}

.cs-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.cs-tool-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    transition: border-color .18s, box-shadow .18s, transform .15s
}

.cs-tool-card:hover {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 6px 20px rgba(0, 82, 224, .07);
    transform: translateY(-2px)
}

.cs-tool-ico {
    font-size: 1.4rem;
    margin-bottom: .65rem
}

.cs-tool-name {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .28rem
}

.cs-tool-desc {
    font-size: .74rem;
    color: var(--text2);
    line-height: 1.6
}

.cs-tool-tag {
    display: inline-block;
    margin-top: .55rem;
    font-size: .58rem;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-l);
    border-radius: 4px;
    padding: .12rem .48rem
}

/* ══ DELIVERABLES ══ */
.cs-deliv-sec {
    background: #fff;
    border-top: 1px solid var(--border)
}

.cs-deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.cs-deliv-card {
    background: var(--off);
    border: 1.5px solid var(--boff);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .18s
}

.cs-deliv-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 26px rgba(0, 82, 224, .09);
    transform: translateY(-3px)
}

.cs-deliv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #a78bfa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s
}

.cs-deliv-card:hover::after {
    transform: scaleX(1)
}

.cs-deliv-num {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0, 82, 224, .55);
    margin-bottom: .7rem;
    font-family: monospace
}

.cs-deliv-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .38rem
}

.cs-deliv-desc {
    font-size: .78rem;
    color: var(--text2);
    line-height: 1.65
}

/* ══ RESULTS ══ */
.cs-results-sec {
    background: #fff;
    border-top: 1px solid var(--border)
}

.cs-res-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.cs-res-card {
    background: var(--off);
    border: 1.5px solid var(--boff);
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow .2s, transform .18s
}

.cs-res-card:hover {
    box-shadow: 0 10px 32px rgba(0, 82, 224, .09);
    transform: translateY(-3px)
}

.cs-rc-top {
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid var(--boff)
}

.cs-rc-domain {
    font-size: .68rem;
    font-family: monospace;
    color: var(--text3);
    margin-bottom: .65rem
}

.cs-rc-metrics {
    display: flex;
    gap: 1rem
}

.cs-rc-m {
    flex: 1;
    text-align: center
}

.cs-rc-mv {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--blue)
}

.cs-rc-ml {
    font-size: .62rem;
    color: var(--text3);
    margin-top: .15rem
}

.cs-rc-bot {
    padding: 1.1rem 1.5rem
}

.cs-rc-q {
    font-size: .78rem;
    color: var(--text2);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: .75rem
}

.cs-rc-by {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding-top: .75rem;
    border-top: 1px solid var(--border)
}

.cs-rc-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.cs-rc-name {
    font-size: .76rem;
    font-weight: 700
}

.cs-rc-role {
    font-size: .67rem;
    color: var(--text3)
}

/* ══ FAQ ══ */
.cs-faq-sec {
    background: var(--off);
    border-top: 1px solid var(--boff)
}

.cs-faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.cs-faq-left h2 {
    margin-bottom: .6rem
}

.cs-faq-left p {
    font-size: .875rem;
    color: var(--text2);
    line-height: 1.72;
    margin-bottom: 1.25rem
}

.cs-faq-cta {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden
}

.cs-faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #a78bfa)
}

.cs-faq-cta h4 {
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .32rem
}

.cs-faq-cta p {
    font-size: .76rem;
    color: var(--text2);
    line-height: 1.6;
    margin-bottom: .875rem
}

.cs-faq-list {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.cs-faq-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .18s, box-shadow .18s
}

.cs-faq-item.open {
    border-color: rgba(0, 82, 224, .28);
    box-shadow: 0 4px 16px rgba(0, 82, 224, .06)
}

.cs-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .875rem;
    padding: .95rem 1.1rem;
    cursor: pointer;
    font-size: .845rem;
    font-weight: 600;
    user-select: none
}

.cs-faq-ico {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--blue);
    font-size: .82rem;
    flex-shrink: 0;
    transition: background .15s, transform .22s
}

.cs-faq-item.open .cs-faq-ico {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg)
}

.cs-faq-a {
    display: none;
    padding: 0 1.1rem .95rem;
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.78
}

.cs-faq-item.open .cs-faq-a {
    display: block
}

/* ══ CTA BANNER ══ */
.cs-cta-sec {
    background: linear-gradient(160deg, var(--dark), #0a1628);
    padding: 5rem 0;
    position: relative;
    overflow: hidden
}

.cs-cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .045) 1px, transparent 1px);
    background-size: 52px 52px
}

.cs-cta-g1 {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0, 82, 224, .14), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.cs-cta-g2 {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, .08), transparent 65%);
    border-radius: 50%;
    pointer-events: none
}

.cs-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center
}

.cs-cta-inner h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: .875rem
}

.cs-cta-inner p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.75;
    max-width: 44ch;
    margin: 0 auto 2rem
}

.cs-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap
}

.cs-cta-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 1.75rem;
    flex-wrap: wrap
}

.cs-cp-item {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .3)
}

.cs-cp-item svg {
    width: 10px;
    height: 10px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
    .hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 0
    }

    .hero-right {
        display: none
    }

    .hero-left {
        padding-bottom: 4rem
    }

    .cs-steps-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .cs-steps-row::before {
        display: none
    }

    .cs-types-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cs-tools-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cs-faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem
    }
}

@media(max-width:768px) {
    .sec {
        padding: 3.5rem 0
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.55rem
    }

    .hero-body {
        padding-top: 2.75rem
    }

    .hero-btns {
        flex-direction: column;
        gap: .55rem
    }

    .btn,
    .btn-blue,
    .btn-ghost-d {
        width: 100%;
        justify-content: center
    }

    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cs-stat {
        border-right: none;
        border-bottom: 1px solid var(--boff)
    }

    .cs-stat:nth-child(odd) {
        border-right: 1px solid var(--boff)
    }

    .cs-stat:nth-child(3),
    .cs-stat:nth-child(4) {
        border-bottom: none
    }

    .cs-wwd-grid {
        grid-template-columns: 1fr
    }

    .cs-why-layout {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .cs-steps-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .cs-types-grid {
        grid-template-columns: 1fr
    }

    .cs-tools-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cs-deliv-grid {
        grid-template-columns: 1fr
    }

    .cs-res-grid {
        grid-template-columns: 1fr
    }

    .cs-sh {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .cs-timeline {
        padding: 1rem
    }

    .cs-cta-btns {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto
    }

    .btn-ghost-l {
        width: 100%;
        justify-content: center
    }
}

@media(max-width:480px) {
    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.38rem
    }

    .cs-steps-row {
        grid-template-columns: 1fr
    }

    .cs-tools-grid {
        grid-template-columns: 1fr
    }

    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:380px) {
    h1 {
        font-size: 2.5rem
    }

    h2 {
        font-size: 1.25rem
    }
}