.cv-wrap,
.cv-wrap *,
.cv-wrap *::before,
.cv-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.cv-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;
}

.cv-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.cv-sec {
    padding: 5rem 0
}

/* ── Keyframes ── */
@keyframes cv-fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes cv-pulse-ring {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(2.6);
        opacity: 0
    }
}

@keyframes cv-glow {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(124, 58, 237, .32)
    }

    50% {
        box-shadow: 0 4px 32px rgba(124, 58, 237, .65), 0 0 0 6px rgba(124, 58, 237, .1)
    }
}

@keyframes cv-shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(200%)
    }
}

@keyframes cv-scan {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(500%)
    }
}

@keyframes cv-float {

    0%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-8px)
    }

    70% {
        transform: translateY(-4px)
    }
}

@keyframes cv-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes cv-typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes cv-cursor {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes cv-slide-in {
    from {
        opacity: 0;
        transform: translateX(-10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes cv-count {
    from {
        opacity: 0;
        transform: scale(.8) translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── Reveal ── */
.cv-rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.cv-rv.cv-in {
    opacity: 1;
    transform: none
}

.cv-rv-l {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.cv-rv-l.cv-in {
    opacity: 1;
    transform: none
}

.cv-rv-r {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.cv-rv-r.cv-in {
    opacity: 1;
    transform: none
}

/* ── Buttons ── */
.cv-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
}

.cv-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-btn-purple {
    background: #7c3aed;
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, .38), 0 0 0 1px rgba(124, 58, 237, .5);
    animation: cv-glow 3s 2s ease-in-out infinite
}

.cv-btn-purple:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, .52)
}

.cv-btn-purple svg {
    stroke: #fff
}

.cv-btn-purple.cv-lg {
    font-size: .92rem;
    padding: .85rem 1.7rem
}

.cv-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)
}

.cv-btn-ghost-d:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-1px)
}

.cv-btn-ghost-d svg {
    stroke: currentColor
}

.cv-btn-ghost-l {
    background: transparent;
    color: #7c3aed;
    border: 1.5px solid rgba(124, 58, 237, .3)
}

.cv-btn-ghost-l:hover {
    background: #f5f3ff;
    transform: translateY(-1px)
}

.cv-btn-ghost-l svg {
    stroke: currentColor
}

/* ── Labels ── */
.cv-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #7c3aed;
    margin-bottom: .7rem
}

.cv-chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cv-chip.cv-lt {
    color: rgba(196, 181, 253, .85)
}

.cv-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
}

.cv-h2.cv-wh {
    color: #fff
}

/* ══════════════════════════
   1. HERO
══════════════════════════ */
.cv-hero {
    background: #0a0612;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0
}

.cv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(124, 58, 237, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, .07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 80% at 55% 30%, #000 30%, transparent 100%);
    pointer-events: none
}

.cv-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(124, 58, 237, .2) 0%, rgba(167, 139, 250, .08) 40%, transparent 70%);
    pointer-events: none
}

.cv-hg2 {
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: min(550px, 65vw);
    height: min(550px, 65vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .1) 0%, transparent 65%);
    pointer-events: none
}

.cv-hg3 {
    position: absolute;
    top: 40%;
    right: 15%;
    width: min(300px, 35vw);
    height: min(300px, 35vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, .07) 0%, transparent 65%);
    pointer-events: none
}

.cv-hero-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .25
}

.cv-hero-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(167, 139, 250, .7), transparent);
    animation: cv-scan 9s linear infinite
}

.cv-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
}

.cv-hero-left {
    padding-bottom: 5rem
}

.cv-hero-left>* {
    animation: cv-fadeUp .6s ease both
}

.cv-hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.cv-hero-left>*:nth-child(2) {
    animation-delay: .12s
}

.cv-hero-left>*:nth-child(3) {
    animation-delay: .2s
}

.cv-hero-left>*:nth-child(4) {
    animation-delay: .28s
}

.cv-hero-left>*:nth-child(5) {
    animation-delay: .36s
}

.cv-crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.cv-crumb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .15s
}

.cv-crumb a:hover {
    color: rgba(255, 255, 255, .7)
}

.cv-crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.cv-svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(124, 58, 237, .14);
    border: 1px solid rgba(124, 58, 237, .38);
    border-radius: 100px;
    padding: .32rem 1rem .32rem .45rem;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(196, 181, 253, .95);
    margin-bottom: .75rem;
    box-shadow: 0 0 24px rgba(124, 58, 237, .12);
    backdrop-filter: blur(6px)
}

.cv-svc-badge-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(124, 58, 237, .6)
}

.cv-svc-badge-ico svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.cv-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
}

.cv-hl {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 40%, #f9a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cv-hl-ai {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cv-hero-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    max-width: 44ch;
    margin-bottom: 2rem
}

.cv-hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem
}

.cv-proof-row {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap
}

.cv-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
}

.cv-proof-pill:hover {
    border-color: rgba(167, 139, 250, .3);
    background: rgba(124, 58, 237, .1)
}

.cv-proof-pill strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 700
}

.cv-pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a78bfa;
    flex-shrink: 0;
    box-shadow: 0 0 6px #a78bfa
}

/* ── Hero Right: AI Answer Simulator ── */
.cv-hero-right {
    animation: cv-fadeUp .65s .18s ease both;
    position: relative;
    padding-bottom: 4rem
}

.cv-ai-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .03) 100%);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 22px;
    padding: 1.5rem;
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .1)
}

.cv-ai-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .22), transparent 65%)
}

.cv-ai-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: cv-shimmer 7s ease-in-out 2s infinite;
    pointer-events: none
}

.cv-aic-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.cv-aic-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .28)
}

.cv-aic-live {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .62rem;
    font-weight: 600;
    color: #a78bfa
}

.cv-aic-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a78bfa;
    position: relative;
    flex-shrink: 0
}

.cv-aic-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #a78bfa;
    opacity: .35;
    animation: cv-pulse-ring 2.4s ease-out infinite
}

/* AI tool tabs */
.cv-aitabs {
    display: flex;
    gap: .35rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

.cv-aitab {
    display: flex;
    align-items: center;
    gap: .3rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 7px;
    padding: .3rem .7rem;
    font-size: .62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .38);
    cursor: pointer;
    transition: all .18s;
    flex-shrink: 0
}

.cv-aitab svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-aitab.cv-act {
    background: rgba(124, 58, 237, .22);
    border-color: rgba(167, 139, 250, .4);
    color: rgba(196, 181, 253, .9)
}

/* Chat bubble */
.cv-chat-q {
    background: rgba(124, 58, 237, .18);
    border: 1px solid rgba(167, 139, 250, .22);
    border-radius: 12px 12px 4px 12px;
    padding: .65rem .9rem;
    font-size: .73rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: .75rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: .5rem
}

.cv-chat-q-ico {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.cv-chat-q-ico svg {
    width: 9px;
    height: 9px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.cv-chat-a {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 4px 12px 12px 12px;
    padding: .75rem .9rem;
    font-size: .73rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
    margin-bottom: .75rem;
    position: relative;
    z-index: 1
}

.cv-chat-a .cv-cite {
    display: inline;
    background: rgba(124, 58, 237, .25);
    border: 1px solid rgba(167, 139, 250, .35);
    border-radius: 4px;
    padding: .06rem .38rem;
    font-size: .65rem;
    font-weight: 700;
    color: #c4b5fd;
    margin: 0 2px
}

.cv-chat-a .cv-cite.cv-you {
    background: rgba(124, 58, 237, .45);
    border-color: rgba(167, 139, 250, .6);
    color: #e9d5ff;
    animation: cv-blink .4s ease .5s 4 alternate
}

.cv-chat-a .cv-nocite {
    display: inline;
    color: rgba(255, 255, 255, .25);
    text-decoration: line-through;
    font-size: .68rem
}

/* Citation pills */
.cv-citations {
    display: flex;
    gap: .38rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: .875rem
}

.cv-cit {
    display: flex;
    align-items: center;
    gap: .3rem;
    border-radius: 100px;
    padding: .22rem .6rem;
    font-size: .6rem;
    font-weight: 700;
    transition: transform .15s
}

.cv-cit:hover {
    transform: scale(1.04)
}

.cv-cit svg {
    width: 8px;
    height: 8px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5
}

.cv-cit-y {
    background: rgba(124, 58, 237, .25);
    border: 1px solid rgba(167, 139, 250, .4);
    color: #c4b5fd
}

.cv-cit-n {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .28)
}

/* Score row */
.cv-aic-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    position: relative;
    z-index: 1
}

.cv-ais {
    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
}

.cv-ais:hover {
    background: rgba(124, 58, 237, .16);
    transform: translateY(-2px)
}

.cv-ais-v {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    animation: cv-count .7s .4s both
}

.cv-ais-l {
    font-size: .56rem;
    color: rgba(255, 255, 255, .32);
    margin-top: 3px
}

.cv-ais-c {
    font-size: .56rem;
    color: #a78bfa;
    margin-top: 2px;
    font-weight: 600
}

.cv-ais.cv-ais-good .cv-ais-c {
    color: #4ade80
}

.cv-float-pill {
    position: absolute;
    bottom: -2rem;
    left: .875rem;
    background: rgba(10, 6, 18, .96);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 14px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    min-width: 245px;
    animation: cv-float 5s ease-in-out infinite;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .5), 0 0 0 1px rgba(124, 58, 237, .12);
    backdrop-filter: blur(16px);
    z-index: 2
}

.cv-fp-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(124, 58, 237, .18);
    border: 1px solid rgba(167, 139, 250, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cv-fp-ico svg {
    width: 13px;
    height: 13px;
    stroke: #a78bfa;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-fp-t {
    font-size: .72rem;
    font-weight: 700;
    color: #fff
}

.cv-fp-s {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 1px
}


/* ══════════════════════════
   2. WHAT WE DO
══════════════════════════ */
.cv-wwd-sec {
    background: #fff;
    border-bottom: 1px solid #e2e8f0
}

.cv-sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.cv-wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem
}

.cv-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
}

.cv-wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a78bfa, #f472b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.cv-wwd-card:hover {
    border-color: rgba(124, 58, 237, .2);
    box-shadow: 0 18px 48px rgba(124, 58, 237, .09);
    transform: translateY(-6px)
}

.cv-wwd-card:hover::before {
    transform: scaleX(1)
}

.cv-wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem
}

.cv-wwd-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, box-shadow .2s
}

.cv-wwd-ico svg {
    width: 20px;
    height: 20px;
    stroke: #7c3aed;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.cv-wwd-card:hover .cv-wwd-ico {
    background: #7c3aed;
    box-shadow: 0 6px 18px rgba(124, 58, 237, .4)
}

.cv-wwd-card:hover .cv-wwd-ico svg {
    stroke: #fff
}

.cv-wwd-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .2s
}

.cv-wwd-card:hover .cv-wwd-num {
    color: #ede9fe
}

.cv-wwd-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.cv-wwd-desc {
    font-size: .83rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: .9rem
}

.cv-wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.cv-wt {
    font-size: .63rem;
    font-weight: 600;
    color: #7c3aed;
    background: #f5f3ff;
    padding: .18rem .55rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.cv-wwd-card:hover .cv-wt {
    background: #7c3aed;
    color: #fff
}

/* ══════════════════════════
   3. WHY IT MATTERS
══════════════════════════ */
.cv-why-sec {
    background: #faf5ff;
    border-top: 1px solid #e9d5ff;
    border-bottom: 1px solid #e9d5ff
}

.cv-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: stretch
}

.cv-why-copy {
    font-size: .88rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 1.4rem
}

.cv-why-copy strong {
    color: #0f172a;
    font-weight: 700
}

.cv-why-checks {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.cv-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(124, 58, 237, .04);
    border: 1px solid rgba(124, 58, 237, .1);
    transition: background .15s, border-color .15s
}

.cv-wck:hover {
    background: rgba(124, 58, 237, .08);
    border-color: rgba(124, 58, 237, .18)
}

.cv-wck-tick {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background .15s
}

.cv-wck-tick svg {
    width: 9px;
    height: 9px;
    stroke: #7c3aed;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-wck:hover .cv-wck-tick {
    background: #7c3aed
}

.cv-wck:hover .cv-wck-tick svg {
    stroke: #fff
}

.cv-why-right {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    justify-content: space-between
}

.cv-wstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
    grid-auto-rows: 1fr
}

.cv-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
}

.cv-wstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #7c3aed, #a78bfa);
    opacity: .3;
    transition: opacity .2s, width .2s
}

.cv-wstat:hover {
    border-color: rgba(124, 58, 237, .22);
    box-shadow: 0 10px 32px rgba(124, 58, 237, .1);
    transform: translateY(-4px)
}

.cv-wstat:hover::before {
    opacity: 1;
    width: 5px
}

.cv-wstat-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #7c3aed;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .3rem
}

.cv-wstat:hover .cv-wstat-val {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cv-wstat-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .2rem
}

.cv-wstat-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.4
}

.cv-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
}

.cv-wstat-wide:hover {
    border-color: rgba(124, 58, 237, .22);
    box-shadow: 0 10px 32px rgba(124, 58, 237, .1);
    transform: translateY(-4px)
}

.cv-wstat-wide-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(124, 58, 237, .35)
}

.cv-wstat-wide-ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-wstat-wide-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #7c3aed;
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0
}

.cv-wstat-wide-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px
}

.cv-wstat-wide-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.35
}

.cv-quote-card {
    background: linear-gradient(145deg, #7c3aed, #6d28d9);
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden
}

.cv-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
}

.cv-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
}

.cv-qc-by {
    display: flex;
    align-items: center;
    gap: .7rem;
    position: relative;
    z-index: 1
}

.cv-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
}

.cv-qc-name {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.cv-qc-role {
    font-size: .65rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px
}

.cv-qc-stars {
    font-size: .72rem;
    color: #fbbf24;
    margin-left: auto;
    letter-spacing: 1px
}

/* ══════════════════════════
   4. AI ENGINE FRAMEWORK
══════════════════════════ */
.cv-engines-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.cv-engines-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center
}

.cv-engine-visual {
    background: #faf5ff;
    border: 1.5px solid #e9d5ff;
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden
}

.cv-engine-visual::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .1), transparent 65%)
}

.cv-ev-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
}

.cv-ev-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7c3aed;
    display: block;
    box-shadow: 0 0 8px rgba(124, 58, 237, .5)
}

.cv-engine-list {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.cv-eng {
    border-radius: 12px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .875rem;
    transition: transform .2s, box-shadow .2s;
    cursor: default
}

.cv-eng:hover {
    transform: translateY(-2px)
}

.cv-eng-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, .09), rgba(124, 58, 237, .04));
    border: 1.5px solid rgba(124, 58, 237, .18)
}

.cv-eng-purple:hover {
    box-shadow: 0 6px 20px rgba(124, 58, 237, .1)
}

.cv-eng-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(59, 130, 246, .03));
    border: 1.5px solid rgba(59, 130, 246, .16)
}

.cv-eng-blue:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, .1)
}

.cv-eng-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, .08), rgba(20, 184, 166, .03));
    border: 1.5px solid rgba(20, 184, 166, .16)
}

.cv-eng-teal:hover {
    box-shadow: 0 6px 20px rgba(20, 184, 166, .1)
}

.cv-eng-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, .07), rgba(244, 63, 94, .03));
    border: 1.5px solid rgba(244, 63, 94, .14)
}

.cv-eng-rose:hover {
    box-shadow: 0 6px 20px rgba(244, 63, 94, .08)
}

.cv-eng-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem
}

.cv-eng-purple .cv-eng-ico {
    background: rgba(124, 58, 237, .14)
}

.cv-eng-blue .cv-eng-ico {
    background: rgba(59, 130, 246, .12)
}

.cv-eng-teal .cv-eng-ico {
    background: rgba(20, 184, 166, .12)
}

.cv-eng-rose .cv-eng-ico {
    background: rgba(244, 63, 94, .1)
}

.cv-eng-name {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .1rem
}

.cv-eng-sub {
    font-size: .69rem;
    color: #64748b;
    line-height: 1.4
}

.cv-eng-bar-wrap {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .28rem;
    flex-shrink: 0
}

.cv-eng-pct {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: -.02em
}

.cv-eng-purple .cv-eng-pct {
    color: #7c3aed
}

.cv-eng-blue .cv-eng-pct {
    color: #3b82f6
}

.cv-eng-teal .cv-eng-pct {
    color: #14b8a6
}

.cv-eng-rose .cv-eng-pct {
    color: #f43f5e
}

.cv-eng-track {
    width: 70px;
    height: 5px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden
}

.cv-eng-fill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1)
}

.cv-eng-purple .cv-eng-fill {
    background: linear-gradient(90deg, #7c3aed, #a78bfa)
}

.cv-eng-blue .cv-eng-fill {
    background: linear-gradient(90deg, #3b82f6, #60a5fa)
}

.cv-eng-teal .cv-eng-fill {
    background: linear-gradient(90deg, #14b8a6, #2dd4bf)
}

.cv-eng-rose .cv-eng-fill {
    background: linear-gradient(90deg, #f43f5e, #fb7185)
}

.cv-ev-stats {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e9d5ff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem
}

.cv-evs {
    text-align: center;
    padding: .5rem .3rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9d5ff
}

.cv-evs-v {
    font-size: 1rem;
    font-weight: 800;
    color: #7c3aed;
    letter-spacing: -.03em;
    line-height: 1
}

.cv-evs-l {
    font-size: .58rem;
    color: #94a3b8;
    margin-top: 3px
}

.cv-engines-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.cv-engines-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.cv-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(124, 58, 237, .04);
    border: 1px solid rgba(124, 58, 237, .08);
    transition: background .15s, border-color .15s
}

.cv-fl:hover {
    background: rgba(124, 58, 237, .08);
    border-color: rgba(124, 58, 237, .15)
}

.cv-fl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7c3aed;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 6px rgba(124, 58, 237, .4)
}

/* ══════════════════════════
   5. PROCESS — dark
══════════════════════════ */
.cv-proc-sec {
    background: #0a0612;
    position: relative;
    overflow: hidden
}

.cv-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
}

.cv-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(124, 58, 237, .15) 0%, transparent 65%);
    pointer-events: none
}

.cv-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
}

.cv-steps-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem;
    position: relative;
    z-index: 1
}

.fp {
    font-size: small;
    padding: 10px;
}

.cv-steps-row::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .4) 15%, rgba(124, 58, 237, .4) 85%, transparent);
    z-index: 0
}

.cv-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
}

.cv-step-box:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(124, 58, 237, .3);
    transform: translateY(-4px)
}

.cv-step-box.cv-on {
    background: rgba(124, 58, 237, .12);
    border-color: rgba(124, 58, 237, .38)
}

.cv-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
}

.cv-step-box:hover .cv-step-circle {
    border-color: rgba(167, 139, 250, .4);
    color: rgba(196, 181, 253, .7)
}

.cv-step-box.cv-on .cv-step-circle {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    box-shadow: 0 0 0 6px rgba(124, 58, 237, .2), 0 0 0 12px rgba(124, 58, 237, .07);
    animation: cv-glow 3s ease-in-out infinite
}

.cv-step-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem;
    line-height: 1.35
}

.cv-step-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.55
}

/* ══════════════════════════
   6. DELIVERABLES
══════════════════════════ */
.cv-deliv-sec {
    background: #faf5ff;
    border-top: 1px solid #e9d5ff;
    border-bottom: 1px solid #e9d5ff
}

.cv-deliv-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.cv-deliv-head p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.cv-deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem
}

.cv-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
}

.cv-dcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.cv-dcard:hover {
    border-color: rgba(124, 58, 237, .2);
    box-shadow: 0 18px 48px rgba(124, 58, 237, .09);
    transform: translateY(-7px)
}

.cv-dcard:hover::before {
    transform: scaleX(1)
}

.cv-dcard-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .95rem;
    transition: background .2s, box-shadow .2s
}

.cv-dcard-ico svg {
    width: 19px;
    height: 19px;
    stroke: #7c3aed;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.cv-dcard:hover .cv-dcard-ico {
    background: #7c3aed;
    box-shadow: 0 6px 18px rgba(124, 58, 237, .4)
}

.cv-dcard:hover .cv-dcard-ico svg {
    stroke: #fff
}

.cv-dcard h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.cv-dcard p {
    font-size: .81rem;
    color: #475569;
    line-height: 1.68;
    margin-bottom: .85rem
}

.cv-dlist {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.cv-dl {
    display: flex;
    align-items: flex-start;
    gap: .48rem;
    font-size: .75rem;
    color: #475569
}

.cv-dl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #7c3aed;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 5px rgba(124, 58, 237, .35)
}

/* ══════════════════════════
   7. FAQ
══════════════════════════ */
.cv-faq-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.cv-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start
}

.cv-faq-left .cv-h2 {
    margin: .65rem 0 .85rem
}

.cv-faq-left>p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.85rem
}

.cv-faq-cta {
    background: #faf5ff;
    border: 1.5px solid #e9d5ff;
    border-radius: 16px;
    padding: 1.4rem 1.5rem
}

.cv-faq-cta h4 {
    font-size: .94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem
}

.cv-faq-cta p {
    font-size: .79rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1rem
}

.cv-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.cv-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.cv-faq-item.cv-open {
    border-color: rgba(124, 58, 237, .25);
    box-shadow: 0 6px 24px rgba(124, 58, 237, .08)
}

.cv-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
}

.cv-faq-q:hover {
    background: #faf5ff
}

.cv-faq-qt {
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45
}

.cv-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s
}

.cv-faq-icon svg {
    width: 9px;
    height: 9px;
    stroke: #7c3aed;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-faq-item.cv-open .cv-faq-icon {
    background: #7c3aed;
    transform: rotate(45deg)
}

.cv-faq-item.cv-open .cv-faq-icon svg {
    stroke: #fff
}

.cv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.22, 1, .36, 1)
}

.cv-faq-item.cv-open .cv-faq-a {
    max-height: 300px
}

.cv-faq-ai {
    padding: .15rem 1.2rem 1rem;
    font-size: .82rem;
    color: #475569;
    line-height: 1.75
}

.cv-faq-ai strong {
    color: #0f172a;
    font-weight: 700
}

/* ══════════════════════════
   8. RESULTS + AUDIT CTA
══════════════════════════ */
.cv-results-sec {
    background: #faf5ff;
    border-top: 1px solid #e9d5ff
}

.cv-results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem;
    align-items: start
}

.cv-result-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.cv-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
}

.cv-rcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #7c3aed, #a78bfa);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.cv-rcard:hover {
    box-shadow: 0 8px 28px rgba(124, 58, 237, .1);
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, .18)
}

.cv-rcard:hover::before {
    transform: scaleY(1)
}

.cv-rcard-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #7c3aed;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right
}

.cv-rcard:hover .cv-rcard-num {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cv-rcard-div {
    width: 2px;
    height: 36px;
    background: #ede9fe;
    border-radius: 2px;
    justify-self: center
}

.cv-rcard-title {
    font-size: .84rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .18rem;
    line-height: 1.42
}

.cv-rcard-sub {
    font-size: .73rem;
    color: #94a3b8;
    margin-bottom: .35rem
}

.cv-rcard-tag {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .61rem;
    font-weight: 600;
    color: #6d28d9;
    background: #ede9fe;
    padding: .14rem .5rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.cv-rcard:hover .cv-rcard-tag {
    background: #7c3aed;
    color: #fff
}

.cv-rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cv-audit-cta {
    background: linear-gradient(145deg, #0a0612 0%, #160b2c 100%);
    border-radius: 18px;
    padding: 1.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.cv-audit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(124, 58, 237, .13) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none
}

.cv-audit-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, .22), transparent 65%);
    pointer-events: none
}

.cv-ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.cv-ac-ey {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(196, 181, 253, .65);
    display: flex;
    align-items: center;
    gap: .32rem
}

.cv-ac-ey svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.cv-ac-ttl {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.022em
}

.cv-ac-ttl span {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cv-ac-sub {
    font-size: .77rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.62
}

.cv-ac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: #7c3aed;
    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(124, 58, 237, .38);
    transition: background .15s, transform .12s;
    border: none;
    cursor: pointer;
    animation: cv-glow 3s 1.5s ease-in-out infinite
}

.cv-ac-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px)
}

.cv-ac-btn svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-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
}

.cv-ac-ph:hover {
    background: rgba(255, 255, 255, .1)
}

.cv-ac-ph svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cv-ac-trust {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.cv-ac-ti {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .66rem;
    color: rgba(255, 255, 255, .28)
}

.cv-ac-ti svg {
    width: 9px;
    height: 9px;
    stroke: rgba(167, 139, 250, .65);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ── Responsive ── */
@media(max-width:1200px) {
    .cv-results-layout {
        grid-template-columns: 1fr 290px
    }
}

@media(max-width:1024px) {
    .cv-hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 0
    }

    .cv-hero-right {
        display: none
    }

    .cv-hero-left {
        padding-bottom: 4.5rem
    }

    .cv-sh {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .cv-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cv-wstat-grid {
        grid-template-columns: 1fr 1fr
    }

    .cv-engines-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cv-faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .cv-results-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
}

@media(max-width:900px) {
    .cv-wwd-grid {
        grid-template-columns: 1fr
    }

    .cv-deliv-grid {
        grid-template-columns: 1fr
    }

    .cv-deliv-head {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .cv-steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .cv-steps-row::before {
        display: none
    }
}

@media(max-width:640px) {
    .cv-wstat-grid {
        grid-template-columns: 1fr
    }

    .cv-deliv-grid {
        grid-template-columns: 1fr
    }

    .cv-steps-row {
        grid-template-columns: 1fr
    }

    .cv-hero-btns {
        flex-direction: column
    }

    .cv-btn-ghost-l {
        width: 100%;
        justify-content: center
    }
}