.ca-wrap,
.ca-wrap *,
.ca-wrap *::before,
.ca-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.ca-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;
}

.ca-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.ca-sec {
    padding: 5rem 0
}

.ca-mono {
    font-family: "JetBrains Mono", monospace
}

/* ── Keyframes ── */
@keyframes ca-fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ca-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

@keyframes ca-float {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    40% {
        transform: translateY(-8px) rotate(.4deg)
    }

    70% {
        transform: translateY(-4px) rotate(-.2deg)
    }
}

@keyframes ca-pulse-ring {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(2.4);
        opacity: 0
    }
}

@keyframes ca-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 ca-shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(200%)
    }
}

@keyframes ca-scan {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(500%)
    }
}

@keyframes ca-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes ca-count {
    from {
        opacity: 0;
        transform: scale(.8) translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ca-progress {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes ca-typewriter {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* ── Reveal ── */
.ca-rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.ca-rv.ca-in {
    opacity: 1;
    transform: none
}

.ca-rv-l {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.ca-rv-l.ca-in {
    opacity: 1;
    transform: none
}

.ca-rv-r {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
}

.ca-rv-r.ca-in {
    opacity: 1;
    transform: none
}

/* ── Buttons ── */
.ca-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
}

.ca-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-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: ca-glow 3s 2s ease-in-out infinite
}

.ca-btn-blue:hover {
    background: #0040c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .52)
}

.ca-btn-blue svg {
    stroke: #fff
}

.ca-btn-blue.ca-lg {
    font-size: .92rem;
    padding: .85rem 1.7rem
}

.ca-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)
}

.ca-btn-ghost-d:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-1px)
}

.ca-btn-ghost-d svg {
    stroke: currentColor
}

.ca-btn-ghost-l {
    background: transparent;
    color: #0052e0;
    border: 1.5px solid rgba(0, 82, 224, .3)
}

.ca-btn-ghost-l:hover {
    background: #e8f0ff;
    transform: translateY(-1px)
}

.ca-btn-ghost-l svg {
    stroke: currentColor
}

/* ── Labels ── */
.ca-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
}

.ca-chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ca-chip.ca-lt {
    color: rgba(148, 187, 255, .85)
}

.ca-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
}

.ca-h2.ca-wh {
    color: #fff
}

/* ══════════════════════════
   1. HERO
══════════════════════════ */
.ca-hero {
    background: #060d1a;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0
}

.ca-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
}

.ca-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
}

.ca-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
}

.ca-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
}

.ca-hero-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .3
}

.ca-hero-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 224, .6), transparent);
    animation: ca-scan 8s linear infinite
}

.ca-hero-body {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.ca-hero-left {
    padding-bottom: 5rem
}

.ca-hero-left>* {
    animation: ca-fadeUp .6s ease both
}

.ca-hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.ca-hero-left>*:nth-child(2) {
    animation-delay: .12s
}

.ca-hero-left>*:nth-child(3) {
    animation-delay: .2s
}

.ca-hero-left>*:nth-child(4) {
    animation-delay: .28s
}

.ca-hero-left>*:nth-child(5) {
    animation-delay: .36s
}

.ca-crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.ca-crumb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .15s
}

.ca-crumb a:hover {
    color: rgba(255, 255, 255, .7)
}

.ca-crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.ca-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: .5rem;
    box-shadow: 0 0 20px rgba(0, 82, 224, .1);
    backdrop-filter: blur(6px)
}

.ca-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)
}

.ca-svc-badge-ico svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.ca-hero-h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.042em;
    color: #fff;
    margin-bottom: 1.1rem
}

.ca-hl {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 55%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ca-hero-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    max-width: 44ch;
    margin-bottom: 2rem
}

.ca-hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem
}

.ca-proof-row {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap
}

.ca-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
}

.ca-proof-pill:hover {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08)
}

.ca-proof-pill strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 700
}

.ca-pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 6px #4ade80
}

/* ── Hero Dashboard Card ── */
.ca-hero-right {
    animation: ca-fadeUp .65s .18s ease both;
    position: relative;
    padding-bottom: 4rem
}

.ca-audit-dash {
    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)
}

.ca-audit-dash::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%)
}

.ca-audit-dash::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04), transparent);
    animation: ca-shimmer 6s ease-in-out 2s infinite;
    pointer-events: none
}

.ca-dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1
}

.ca-dash-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .28)
}

.ca-dash-live {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .62rem;
    font-weight: 600;
    color: #4ade80
}

.ca-dash-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    position: relative;
    flex-shrink: 0
}

.ca-dash-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #4ade80;
    opacity: .4;
    animation: ca-pulse-ring 2.2s ease-out infinite
}

/* URL scanning row */
.ca-url-bar {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    padding: .5rem .85rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.ca-url-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, rgba(0, 82, 224, .08), rgba(0, 82, 224, .18), rgba(0, 82, 224, .08));
    animation: ca-progress 2.5s ease-in-out 1s infinite;
    border-radius: 9px
}

.ca-url-ico {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.ca-url-ico svg {
    width: 8px;
    height: 8px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    animation: ca-spin 2s linear infinite
}

.ca-url-text {
    font-family: "JetBrains Mono", monospace;
    font-size: .63rem;
    color: rgba(255, 255, 255, .55);
    flex: 1;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ca-url-status {
    font-size: .6rem;
    font-weight: 700;
    color: #4ade80;
    position: relative;
    z-index: 1;
    flex-shrink: 0
}

/* Page score rows */
.ca-page-rows {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1
}

.ca-page-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: .45rem .7rem;
    transition: background .18s, border-color .18s, transform .18s
}

.ca-page-row:hover {
    background: rgba(0, 82, 224, .14);
    border-color: rgba(0, 82, 224, .28);
    transform: translateX(4px)
}

.ca-page-url {
    font-family: "JetBrains Mono", monospace;
    font-size: .62rem;
    color: rgba(255, 255, 255, .5);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ca-page-action {
    font-size: .58rem;
    font-weight: 700;
    padding: .1rem .42rem;
    border-radius: 4px;
    flex-shrink: 0
}

.ca-act-fix {
    background: rgba(251, 146, 60, .2);
    color: rgba(253, 186, 116, .95)
}

.ca-act-keep {
    background: rgba(34, 197, 94, .16);
    color: rgba(134, 239, 172, .95)
}

.ca-act-delete {
    background: rgba(239, 68, 68, .18);
    color: rgba(252, 165, 165, .95)
}

.ca-act-merge {
    background: rgba(168, 85, 247, .18);
    color: rgba(216, 180, 254, .95)
}

.ca-page-score {
    font-size: .65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0;
    min-width: 22px;
    text-align: right
}

/* Mini stats */
.ca-dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    position: relative;
    z-index: 1
}

.ca-ds {
    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
}

.ca-ds:hover {
    background: rgba(0, 82, 224, .16);
    transform: translateY(-2px)
}

.ca-ds-v {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    animation: ca-count .7s .4s both
}

.ca-ds-l {
    font-size: .56rem;
    color: rgba(255, 255, 255, .32);
    margin-top: 3px
}

.ca-ds-c {
    font-size: .56rem;
    color: #4ade80;
    margin-top: 2px;
    font-weight: 600
}

.ca-float-pill {
    position: absolute;
    bottom: 1rem;
    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: ca-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
}

.ca-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
}

.ca-fp-ico svg {
    width: 13px;
    height: 13px;
    stroke: #4ade80;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-fp-t {
    font-size: .72rem;
    font-weight: 700;
    color: #fff
}

.ca-fp-s {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 1px
}

/* ══════════════════════════
   2. WHAT WE DO
══════════════════════════ */
.ca-wwd-sec {
    background: #fff;
    border-bottom: 1px solid #e2e8f0
}

.ca-sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.ca-sh2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.ca-sh2 p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.ca-wwd-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem
}

.ca-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
}

.ca-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)
}

.ca-wwd-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 18px 48px rgba(0, 82, 224, .1);
    transform: translateY(-6px)
}

.ca-wwd-card:hover::before {
    transform: scaleX(1)
}

.ca-wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem
}

.ca-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
}

.ca-wwd-ico svg {
    width: 20px;
    height: 20px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.ca-wwd-card:hover .ca-wwd-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(0, 82, 224, .4)
}

.ca-wwd-card:hover .ca-wwd-ico svg {
    stroke: #fff
}

.ca-wwd-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .2s
}

.ca-wwd-card:hover .ca-wwd-num {
    color: #dce8ff
}

.ca-wwd-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.ca-wwd-desc {
    font-size: .83rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: .9rem
}

.ca-wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.ca-wt {
    font-size: .63rem;
    font-weight: 600;
    color: #0052e0;
    background: #e8f0ff;
    padding: .18rem .55rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.ca-wwd-card:hover .ca-wt {
    background: #0052e0;
    color: #fff
}

/* ══════════════════════════
   3. WHY IT MATTERS
══════════════════════════ */
.ca-why-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.ca-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: stretch
}

.ca-why-copy {
    font-size: .88rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 1.4rem
}

.ca-why-copy strong {
    color: #0f172a;
    font-weight: 700
}

.ca-why-checks {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ca-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
}

.ca-wck:hover {
    background: rgba(0, 82, 224, .08);
    border-color: rgba(0, 82, 224, .14)
}

.ca-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
}

.ca-wck-tick svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-wck:hover .ca-wck-tick {
    background: #0052e0
}

.ca-wck:hover .ca-wck-tick svg {
    stroke: #fff
}

.ca-why-right {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    justify-content: space-between
}

.ca-wstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
    grid-auto-rows: 1fr
}

.ca-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
}

.ca-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
}

.ca-wstat:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.ca-wstat:hover::before {
    opacity: 1;
    width: 5px
}

.ca-wstat-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .3rem;
    transition: all .2s
}

.ca-wstat:hover .ca-wstat-val {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ca-wstat-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .2rem
}

.ca-wstat-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.4
}

.ca-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
}

.ca-wstat-wide:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.ca-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)
}

.ca-wstat-wide-ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-wstat-wide-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0
}

.ca-wstat-wide-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px
}

.ca-wstat-wide-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.35
}

.ca-quote-card {
    background: linear-gradient(145deg, #0052e0, #4338ca);
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden
}

.ca-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
}

.ca-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
}

.ca-qc-by {
    display: flex;
    align-items: center;
    gap: .7rem;
    position: relative;
    z-index: 1
}

.ca-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
}

.ca-qc-name {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.ca-qc-role {
    font-size: .65rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px
}

.ca-qc-stars {
    font-size: .72rem;
    color: #fbbf24;
    margin-left: auto;
    letter-spacing: 1px
}

/* ══════════════════════════
   4. AUDIT FRAMEWORK — white
══════════════════════════ */
.ca-framework-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ca-framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center
}

/* Content scoring visual */
.ca-score-visual {
    background: #f0f5ff;
    border: 1.5px solid #dce8ff;
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden
}

.ca-score-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%)
}

.ca-sv-head {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .45rem
}

.ca-sv-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    display: block;
    box-shadow: 0 0 8px rgba(0, 82, 224, .5)
}

/* Decision matrix */
.ca-decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 1.25rem
}

.ca-decision-cell {
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.ca-decision-cell:hover {
    transform: translateY(-2px)
}

.ca-dc-keep {
    background: rgba(34, 197, 94, .08);
    border: 1.5px solid rgba(34, 197, 94, .2)
}

.ca-dc-keep:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, .15)
}

.ca-dc-fix {
    background: rgba(251, 146, 60, .08);
    border: 1.5px solid rgba(251, 146, 60, .2)
}

.ca-dc-fix:hover {
    box-shadow: 0 6px 20px rgba(251, 146, 60, .15)
}

.ca-dc-merge {
    background: rgba(168, 85, 247, .08);
    border: 1.5px solid rgba(168, 85, 247, .2)
}

.ca-dc-merge:hover {
    box-shadow: 0 6px 20px rgba(168, 85, 247, .15)
}

.ca-dc-delete {
    background: rgba(239, 68, 68, .08);
    border: 1.5px solid rgba(239, 68, 68, .2)
}

.ca-dc-delete:hover {
    box-shadow: 0 6px 20px rgba(239, 68, 68, .15)
}

.ca-dc-label {
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .3rem
}

.ca-dc-keep .ca-dc-label {
    color: #16a34a
}

.ca-dc-fix .ca-dc-label {
    color: #d97706
}

.ca-dc-merge .ca-dc-label {
    color: #7c3aed
}

.ca-dc-delete .ca-dc-label {
    color: #dc2626
}

.ca-dc-desc {
    font-size: .72rem;
    color: #475569;
    line-height: 1.5
}

.ca-dc-pct {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1
}

.ca-dc-keep .ca-dc-pct {
    color: #16a34a
}

.ca-dc-fix .ca-dc-pct {
    color: #d97706
}

.ca-dc-merge .ca-dc-pct {
    color: #7c3aed
}

.ca-dc-delete .ca-dc-pct {
    color: #dc2626
}

/* Score bar */
.ca-score-bar-wrap {
    background: #fff;
    border: 1px solid #dce8ff;
    border-radius: 12px;
    padding: 1rem 1.25rem
}

.ca-sb-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: .5rem
}

.ca-sb-lbl {
    font-size: .72rem;
    color: #475569;
    font-weight: 500
}

.ca-sb-val {
    font-size: .72rem;
    font-weight: 700;
    color: #0052e0
}

.ca-sb-track {
    height: 8px;
    background: #e8f0ff;
    border-radius: 100px;
    overflow: hidden
}

.ca-sb-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #0052e0, #818cf8);
    width: 0%;
    transition: width 1.6s cubic-bezier(.22, 1, .36, 1)
}

.ca-framework-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.ca-framework-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ca-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
}

.ca-fl:hover {
    background: rgba(0, 82, 224, .08);
    border-color: rgba(0, 82, 224, .14)
}

.ca-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
══════════════════════════ */
.ca-proc-sec {
    background: #0f172a;
    position: relative;
    overflow: hidden
}

.ca-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
}

.ca-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
}

.ca-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
}

.ca-steps-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.35rem;
    position: relative;
    z-index: 1
}

.ca-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
}

.ca-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
}

.ca-step-box:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(0, 82, 224, .28);
    transform: translateY(-4px)
}

.ca-step-box.ca-on {
    background: rgba(0, 82, 224, .12);
    border-color: rgba(0, 82, 224, .35)
}

.ca-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
}

.ca-step-box:hover .ca-step-circle {
    border-color: rgba(0, 82, 224, .4);
    color: rgba(148, 196, 255, .7)
}

.ca-step-box.ca-on .ca-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: ca-glow 3s ease-in-out infinite
}

.ca-step-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem;
    line-height: 1.35
}

.ca-step-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.55
}

/* ══════════════════════════
   6. WHAT YOU GET — off-blue
══════════════════════════ */
.ca-get-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff;
    border-bottom: 1px solid #dce8ff
}

.ca-get-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.5rem
}

.ca-get-head p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.ca-get-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem
}

.ca-get-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .2s
}

.ca-get-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0052e0, #818cf8);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s cubic-bezier(.22, 1, .36, 1)
}

.ca-get-card:hover {
    border-color: rgba(0, 82, 224, .22);
    box-shadow: 0 12px 32px rgba(0, 82, 224, .1);
    transform: translateY(-4px)
}

.ca-get-card:hover::after {
    transform: scaleY(1)
}

.ca-get-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
    transition: background .2s, box-shadow .2s
}

.ca-get-ico svg {
    width: 19px;
    height: 19px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.ca-get-card:hover .ca-get-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(0, 82, 224, .4)
}

.ca-get-card:hover .ca-get-ico svg {
    stroke: #fff
}

.ca-get-title {
    font-size: .95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem
}

.ca-get-desc {
    font-size: .81rem;
    color: #475569;
    line-height: 1.68;
    margin-bottom: .85rem
}

.ca-get-list {
    display: flex;
    flex-direction: column;
    gap: .28rem
}

.ca-gl {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .74rem;
    color: #475569
}

.ca-gl-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
══════════════════════════ */
.ca-faq-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ca-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start
}

.ca-faq-left .ca-h2 {
    margin: .65rem 0 .85rem
}

.ca-faq-left>p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.85rem
}

.ca-faq-cta {
    background: #f0f5ff;
    border: 1.5px solid #dce8ff;
    border-radius: 16px;
    padding: 1.4rem 1.5rem
}

.ca-faq-cta h4 {
    font-size: .94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem
}

.ca-faq-cta p {
    font-size: .79rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1rem
}

.ca-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ca-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.ca-faq-item.ca-open {
    border-color: rgba(0, 82, 224, .25);
    box-shadow: 0 6px 24px rgba(0, 82, 224, .08)
}

.ca-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
}

.ca-faq-q:hover {
    background: #f8faff
}

.ca-faq-qt {
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45
}

.ca-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
}

.ca-faq-icon svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-faq-item.ca-open .ca-faq-icon {
    background: #0052e0;
    transform: rotate(45deg)
}

.ca-faq-item.ca-open .ca-faq-icon svg {
    stroke: #fff
}

.ca-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.22, 1, .36, 1)
}

.ca-faq-item.ca-open .ca-faq-a {
    max-height: 280px
}

.ca-faq-ai {
    padding: .15rem 1.2rem 1rem;
    font-size: .82rem;
    color: #475569;
    line-height: 1.75
}

.ca-faq-ai strong {
    color: #0f172a;
    font-weight: 700
}

/* ══════════════════════════
   8. RESULTS + AUDIT — white
══════════════════════════ */
.ca-results-sec {
    background: #f0f5ff;
    border-top: 1px solid #dce8ff
}

.ca-results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem;
    align-items: start
}

.ca-result-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.ca-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
}

.ca-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)
}

.ca-rcard:hover {
    box-shadow: 0 8px 28px rgba(0, 82, 224, .1);
    transform: translateY(-3px);
    border-color: rgba(0, 82, 224, .18)
}

.ca-rcard:hover::before {
    transform: scaleY(1)
}

.ca-rcard-num {
    font-size: 2rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right;
    transition: all .2s
}

.ca-rcard:hover .ca-rcard-num {
    background: linear-gradient(135deg, #0052e0, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ca-rcard-div {
    width: 2px;
    height: 36px;
    background: #e8f0ff;
    border-radius: 2px;
    justify-self: center
}

.ca-rcard-title {
    font-size: .84rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .18rem;
    line-height: 1.42
}

.ca-rcard-sub {
    font-size: .73rem;
    color: #94a3b8;
    margin-bottom: .35rem
}

.ca-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
}

.ca-rcard:hover .ca-rcard-tag {
    background: #0052e0;
    color: #fff
}

.ca-rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ca-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)
}

.ca-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
}

.ca-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
}

.ca-ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.ca-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
}

.ca-ac-ey svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ca-ac-ttl {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.022em
}

.ca-ac-ttl span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ca-ac-sub {
    font-size: .77rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.62
}

.ca-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: ca-glow 3s 1.5s ease-in-out infinite
}

.ca-ac-btn:hover {
    background: #0040c0;
    transform: translateY(-2px)
}

.ca-ac-btn svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-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
}

.ca-ac-ph:hover {
    background: rgba(255, 255, 255, .1)
}

.ca-ac-ph svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ca-ac-trust {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.ca-ac-ti {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .66rem;
    color: rgba(255, 255, 255, .28)
}

.ca-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) {
    .ca-results-layout {
        grid-template-columns: 1fr 290px
    }
}

@media(max-width:1024px) {
    .ca-hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 0
    }

    .ca-hero-right {
        display: none
    }

    .ca-hero-left {
        padding-bottom: 4.5rem
    }

    .ca-sh {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .ca-sh2 {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .ca-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ca-wstat-grid {
        grid-template-columns: 1fr 1fr
    }

    .ca-framework-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ca-proc-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem
    }

    .ca-steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .ca-steps-row::before {
        display: none
    }

    .ca-get-head {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .ca-get-grid {
        grid-template-columns: 1fr 1fr
    }

    .ca-faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ca-results-layout {
        grid-template-columns: 1fr 260px
    }

    .ca-decision-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .ca-sec {
        padding: 4rem 0
    }

    .ca-hero-body {
        padding-top: 3rem
    }

    .ca-hero-btns {
        flex-direction: column;
        gap: .6rem
    }

    .ca-btn,
    .ca-btn-blue,
    .ca-btn-ghost-d {
        width: 100%;
        justify-content: center
    }

    .ca-wwd-grid {
        grid-template-columns: 1fr
    }

    .ca-wstat-grid {
        grid-template-columns: 1fr
    }

    .ca-steps-row {
        grid-template-columns: 1fr
    }

    .ca-get-grid {
        grid-template-columns: 1fr
    }

    .ca-results-layout {
        grid-template-columns: 1fr
    }

    .ca-rcard {
        grid-template-columns: 75px 2px 1fr;
        gap: .9rem;
        padding: 1.1rem 1.25rem
    }

    .ca-rcard-num {
        font-size: 1.7rem
    }
}

@media(max-width:480px) {
    .ca-hero-h1 {
        font-size: 2rem
    }

    .ca-h2 {
        font-size: 1.5rem
    }

    .ca-sh>div:last-child,
    .ca-sh2>div:last-child,
    .ca-get-head>div:last-child {
        display: none
    }

    .ca-btn-ghost-l {
        width: 100%;
        justify-content: center
    }

    .ca-decision-grid {
        grid-template-columns: 1fr
    }
}

.fp {
    padding: 10px;
    font-size: small;
}