/* ==========================================================================
   Vibe Code Security Audit — page-scoped styles
   All rules prefixed .vca- and live under .vca-page so they cannot leak.
   Palette: brand RED (alarms) + EMERALD (passed/secured) + deep BLACK.
   Distinct from siblings: dev page red, refactor page red+blue, this one
   reads as a "security scanner" UI.
   ========================================================================== */

:root {
    --vca-red:           #ec2024;
    --vca-red-soft:      #ff8587;
    --vca-red-deep:      #b81a1d;
    --vca-red-faint:     rgba(236, 32, 36, 0.10);
    --vca-emerald:       #10b981;
    --vca-emerald-soft:  #34d399;
    --vca-emerald-deep:  #047857;
    --vca-emerald-faint: rgba(16, 185, 129, 0.10);
    --vca-amber:         #f59e0b;
    --vca-amber-soft:    #fbbf24;
    --vca-bg:            #06080a;
    --vca-bg-alt:        #0b0e12;
    --vca-card:          #11141a;
    --vca-card-hi:       #181c24;
    --vca-border:        rgba(255, 255, 255, 0.08);
    --vca-border-hi:     rgba(16, 185, 129, 0.40);
    --vca-text:          #ffffff;
    --vca-muted:         rgba(255, 255, 255, 0.66);
    --vca-muted-2:       rgba(255, 255, 255, 0.5);
    --vca-grad-red-em:   linear-gradient(135deg, #ec2024 0%, #b81a1d 40%, #10b981 100%);
    --vca-grad-red:      linear-gradient(135deg, #ff5a5d 0%, #ec2024 55%, #b81a1d 100%);
    --vca-grad-em:       linear-gradient(135deg, #6ee7b7 0%, #10b981 55%, #047857 100%);
}

.vca-page { background: var(--vca-bg); color: var(--vca-text); font-family: inherit; overflow-x: hidden; }
.vca-page .bg-section-black { background: var(--vca-bg-alt); }

.vca-page .container {
    max-width: 1320px !important;
    padding-left: 32px !important; padding-right: 32px !important;
    margin-left: auto !important; margin-right: auto !important;
}
@media (max-width: 991px) { .vca-page .container { padding-left: 24px !important; padding-right: 24px !important; } }
@media (max-width: 575px) { .vca-page .container { padding-left: 20px !important; padding-right: 20px !important; } }

.vca-section { padding: 80px 0; }
@media (max-width: 991px) { .vca-section { padding: 64px 0; } }
@media (max-width: 575px) { .vca-section { padding: 48px 0; } }

/* Typography */
.vca-h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #111;
    font-weight: 800;
    margin: 0;
}
.vca-h2--light { color: #fff; }
.vca-lead { font-size: 18px; line-height: 1.65; color: rgba(0, 0, 0, 0.66); max-width: 760px; }
.vca-lead--light { color: var(--vca-muted); }

.vca-text-accent {
    background: var(--vca-grad-red-em);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}

.vca-c-red    { color: var(--vca-red-soft); }
.vca-c-amber  { color: var(--vca-amber-soft); }
.vca-c-green  { color: var(--vca-emerald-soft); }

.vca-eyebrow {
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--vca-emerald-soft);
    padding: 6px 14px;
    border: 1px solid var(--vca-border-hi);
    border-radius: 999px;
    background: var(--vca-emerald-faint);
}
.vca-define .vca-eyebrow,
.vca-process .vca-eyebrow,
.vca-compare .vca-eyebrow,
.vca-frameworks .vca-eyebrow,
.vca-pricing .vca-eyebrow,
.vca-why .vca-eyebrow,
.vca-faq .vca-eyebrow {
    color: var(--vca-emerald-deep);
}
.vca-eyebrow--on-dark {
    color: var(--vca-emerald-soft);
    background: var(--vca-emerald-faint);
    border-color: rgba(16, 185, 129, 0.45);
}
.vca-eyebrow__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--vca-emerald);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
    animation: vca-pulse 2.4s ease-in-out infinite;
}

/* Severity badges - used in hero scanner + pain cards */
.vca-sev {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    border-radius: 4px;
    font-family: ui-monospace, 'SF Mono', Consolas, monospace;
}
.vca-sev--crit {
    background: rgba(236, 32, 36, 0.16);
    color: #ff8587;
    border: 1px solid rgba(236, 32, 36, 0.5);
}
.vca-sev--high {
    background: rgba(245, 158, 11, 0.16);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.5);
}
.vca-sev--med {
    background: rgba(59, 130, 246, 0.16);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.5);
}
.vca-sev--ok {
    background: rgba(16, 185, 129, 0.16);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.5);
}

/* Buttons */
.vca-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 15px; font-weight: 700;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    line-height: 1;
}
.vca-btn--xl { padding: 18px 34px; font-size: 17px; }
.vca-btn--primary {
    background: var(--vca-grad-red);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(236, 32, 36, 0.65);
}
.vca-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px -12px rgba(236, 32, 36, 0.85);
    color: #fff;
}
.vca-btn--whatsapp {
    background: #25D366; color: #fff; border-color: #25D366;
    box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.55);
}
.vca-btn--whatsapp:hover { background: #1da851; border-color: #1da851; color: #fff; transform: translateY(-2px); }
.vca-btn--ghost {
    background: transparent; color: var(--vca-text);
    border-color: rgba(255, 255, 255, 0.18);
}
.vca-btn--ghost:hover { border-color: var(--vca-emerald); color: var(--vca-emerald-soft); transform: translateY(-2px); }
.vca-btn__arrow { transition: transform 200ms ease; display: inline-block; }
.vca-btn:hover .vca-btn__arrow { transform: translateX(4px); }

/* Light-section ghost overrides */
.vca-compare .vca-btn--ghost,
.vca-frameworks .vca-btn--ghost,
.vca-pricing .vca-btn--ghost,
.vca-why .vca-btn--ghost,
.vca-faq .vca-btn--ghost {
    color: #111; border-color: rgba(0,0,0,0.18);
}
.vca-compare .vca-btn--ghost:hover,
.vca-frameworks .vca-btn--ghost:hover,
.vca-pricing .vca-btn--ghost:hover,
.vca-why .vca-btn--ghost:hover,
.vca-faq .vca-btn--ghost:hover {
    color: var(--vca-emerald-deep); border-color: var(--vca-emerald);
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.vca-hero {
    background: var(--vca-bg); color: var(--vca-text);
    padding: 78px 0 110px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) { .vca-hero { padding: 48px 0 80px; } }
.vca-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at top, #000 30%, transparent 75%);
    z-index: -1;
}
.vca-hero__glow {
    position: absolute;
    width: 620px; height: 620px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    z-index: -1;
    animation: vca-float 12s ease-in-out infinite;
}
.vca-hero__glow--red   { background: radial-gradient(circle, rgba(236, 32, 36, 0.55) 0%, transparent 70%); top: -200px; right: -120px; }
.vca-hero__glow--green { background: radial-gradient(circle, rgba(16, 185, 129, 0.55) 0%, transparent 70%); bottom: -240px; left: -160px; animation-delay: -6s; }
/* Slow scanning sweep across hero — evokes a security-scanner UI */
.vca-hero__scanline {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 49.5%, rgba(16, 185, 129, 0.08) 50%, transparent 50.5%);
    pointer-events: none;
    z-index: -1;
    animation: vca-scan 7s linear infinite;
}

.vca-hero__title {
    font-size: clamp(29px, 4.6vw, 57px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: #fff;
}
.vca-hero__lead { font-size: 18px; line-height: 1.65; color: var(--vca-muted); max-width: 640px; }
.vca-hero__lead--small { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 620px; }
.vca-hero__stats { color: var(--vca-muted); }
.vca-hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.vca-hero__stats strong {
    font-size: 32px; font-weight: 800; line-height: 1;
    background: var(--vca-grad-red-em);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.vca-hero__stats span { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============== SCANNER WIDGET (hero right column) ============== */
.vca-scanner {
    background: linear-gradient(160deg, rgba(20, 24, 32, 0.95), rgba(10, 14, 20, 0.95));
    border: 1px solid var(--vca-border-hi);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -22px rgba(16, 185, 129, 0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.vca-scanner__head {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--vca-border);
    background: rgba(255,255,255,0.02);
}
.vca-scanner__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.vca-scanner__dot--red   { background: #ff5a5d; box-shadow: 0 0 8px rgba(236, 32, 36, 0.6); }
.vca-scanner__dot--amber { background: #fbbf24; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.vca-scanner__dot--green { background: #34d399; box-shadow: 0 0 8px rgba(16, 185, 129, 0.7); animation: vca-blink 1.6s ease-in-out infinite; }
.vca-scanner__label {
    margin-left: 8px;
    font-family: ui-monospace, monospace;
    font-size: 12px; color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
}
.vca-scanner__body { display: flex; flex-direction: column; }
.vca-scanner__row {
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 12px;
    padding: 12px 18px;
    border-bottom: 1px dashed rgba(255,255,255,0.06);
    align-items: center;
    transition: background 200ms ease;
    animation: vca-row-in 600ms ease-out backwards;
}
.vca-scanner__row:nth-child(1) { animation-delay: 0.1s; }
.vca-scanner__row:nth-child(2) { animation-delay: 0.25s; }
.vca-scanner__row:nth-child(3) { animation-delay: 0.4s; }
.vca-scanner__row:nth-child(4) { animation-delay: 0.55s; }
.vca-scanner__row:nth-child(5) { animation-delay: 0.7s; }
.vca-scanner__row:nth-child(6) { animation-delay: 0.85s; }
.vca-scanner__row:nth-child(7) { animation-delay: 1.0s; }
.vca-scanner__row:hover { background: rgba(255,255,255,0.03); }
.vca-scanner__row--crit { background: linear-gradient(90deg, rgba(236, 32, 36, 0.10), transparent 70%); }
.vca-scanner__row--high { background: linear-gradient(90deg, rgba(245, 158, 11, 0.06), transparent 70%); }
.vca-scanner__row .vca-sev { grid-row: 1 / 3; align-self: center; }
.vca-scanner__file {
    font-family: ui-monospace, monospace;
    font-size: 13px; color: #fff;
}
.vca-scanner__file code { color: #fff; background: transparent; padding: 0; }
.vca-scanner__msg {
    font-size: 12px; color: var(--vca-muted-2);
    grid-column: 2;
}
.vca-scanner__foot {
    display: flex; flex-wrap: wrap; gap: 18px;
    padding: 14px 18px;
    border-top: 1px solid var(--vca-border);
    background: rgba(255,255,255,0.02);
    font-size: 13px;
    color: var(--vca-muted-2);
}
.vca-scanner__foot strong {
    font-family: ui-monospace, monospace;
    margin-right: 4px;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.vca-trust {
    background: var(--vca-bg-alt);
    padding: 28px 0;
    border-top: 1px solid var(--vca-border);
    border-bottom: 1px solid var(--vca-border);
}
.vca-trust__inner {
    display: flex; flex-wrap: wrap; align-items: center; gap: 22px 32px;
    justify-content: space-between;
}
.vca-trust__label {
    margin: 0;
    font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--vca-muted-2);
    max-width: 280px;
}
.vca-trust__grid {
    display: flex; flex-wrap: wrap; gap: 12px;
    flex: 1 1 auto;
    justify-content: flex-end;
}
.vca-trust__item {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: border-color 200ms ease, transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.vca-trust__item:hover {
    border-color: var(--vca-border-hi);
    background: var(--vca-card-hi);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 30px -16px rgba(16, 185, 129, 0.45);
}
.vca-trust__mono {
    flex: 0 0 36px; width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: var(--vca-grad-red-em);
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
    color: #fff;
}
.vca-trust__text { display: flex; flex-direction: column; gap: 2px; }
.vca-trust__name { font-size: 14px; font-weight: 700; line-height: 1.1; }
.vca-trust__meta { font-size: 11.5px; letter-spacing: 0.06em; color: var(--vca-muted-2); text-transform: uppercase; }
@media (max-width: 767px) {
    .vca-trust__inner { flex-direction: column; align-items: flex-start; }
    .vca-trust__grid  { width: 100%; justify-content: flex-start; }
}

/* ==========================================================================
   2. DEFINE
   ========================================================================== */
.vca-define { background: #fafafa; color: #111; padding-top: 64px; padding-bottom: 64px; }
.vca-define .vca-h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.2; }
.vca-define__answer { font-size: 17px; line-height: 1.75; color: rgba(0,0,0,0.78); margin: 0 0 14px; }
.vca-define__answer:last-child { margin-bottom: 0; }
.vca-define__answer strong { color: #111; font-weight: 700; }
.vca-define__answer a {
    color: var(--vca-emerald-deep);
    text-decoration: underline;
    text-decoration-color: rgba(16, 185, 129, 0.4);
    text-underline-offset: 3px;
    font-weight: 600;
}
.vca-define__answer a:hover { text-decoration-color: var(--vca-emerald); }

/* ==========================================================================
   3. PAINS  ·  dark bg, severity-color-coded cards
   ========================================================================== */
.vca-pain-card {
    position: relative;
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 18px;
    padding: 24px 24px 22px;
    height: 100%;
    overflow: hidden;
    transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.vca-pain-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    opacity: 0; transition: opacity 280ms ease;
}
.vca-pain-card--crit::before { background: linear-gradient(90deg, #ff5a5d, var(--vca-red)); }
.vca-pain-card--high::before { background: linear-gradient(90deg, #fbbf24, var(--vca-amber)); }
.vca-pain-card--med::before  { background: linear-gradient(90deg, #93c5fd, #3b82f6); }
.vca-pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255, 0.18);
    box-shadow: 0 28px 50px -22px rgba(0,0,0,0.6);
}
.vca-pain-card:hover::before { opacity: 1; }
.vca-pain-card--crit:hover { border-color: rgba(236, 32, 36, 0.5); box-shadow: 0 28px 50px -22px rgba(236, 32, 36, 0.4); }
.vca-pain-card--high:hover { border-color: rgba(245, 158, 11, 0.5); box-shadow: 0 28px 50px -22px rgba(245, 158, 11, 0.35); }
.vca-pain-card .vca-sev { margin-bottom: 14px; align-self: flex-start; }
.vca-pain-card__title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 8px; }
.vca-pain-card__body  { font-size: 14.5px; line-height: 1.6; color: var(--vca-muted); margin: 0; }
.vca-pain-card__body code {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.10);
    padding: 1px 6px; border-radius: 4px;
    font-size: 12.5px;
    font-family: ui-monospace, monospace;
}

/* ==========================================================================
   4. PROCESS  ·  light bg
   ========================================================================== */
.vca-process { background: #fafafa; color: #111; }
.vca-process-list { display: grid; gap: 18px; max-width: 980px; margin: 0 auto; }
.vca-process-item {
    display: flex; gap: 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 22px 24px;
    transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.vca-process-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateX(4px);
    box-shadow: 0 16px 32px -16px rgba(16, 185, 129, 0.25);
}
.vca-process-item__num {
    flex: 0 0 56px; width: 56px; height: 56px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px;
    font-size: 20px; font-weight: 900;
    background: var(--vca-grad-red-em);
    color: #fff;
}
.vca-process-item__body { flex: 1 1 auto; }
.vca-process-item__title { font-size: 18px; font-weight: 800; color: #111; }
.vca-process-item__time {
    font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--vca-emerald-deep);
    background: var(--vca-emerald-faint);
    padding: 4px 10px; border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.35);
}
.vca-process-item__text { font-size: 14.5px; color: rgba(0,0,0,0.65); line-height: 1.6; }

/* ==========================================================================
   5. SERVICES (audit tracks)  ·  dark bg
   ========================================================================== */
.vca-service-card {
    position: relative;
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 18px;
    padding: 28px 26px 26px;
    height: 100%;
    overflow: hidden;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.vca-service-card::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
    background: var(--vca-grad-em);
    transition: height 280ms ease;
}
.vca-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--vca-border-hi);
    box-shadow: 0 28px 50px -22px rgba(16, 185, 129, 0.4);
}
.vca-service-card:hover::after { height: 3px; }
.vca-service-card__num {
    display: inline-block;
    font-size: 13px; font-weight: 800; letter-spacing: 0.12em;
    color: var(--vca-emerald-soft);
    background: var(--vca-emerald-faint);
    padding: 4px 10px; border-radius: 8px;
    margin-bottom: 14px;
}
.vca-service-card__title { font-size: 19px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.vca-service-card__body  { font-size: 14.5px; line-height: 1.6; color: var(--vca-muted); margin: 0; }

/* ==========================================================================
   6. COMPARE  ·  light bg
   ========================================================================== */
.vca-compare { background: #fafafa; color: #111; }
.vca-compare-grid { display: grid; gap: 14px; max-width: 1080px; margin: 0 auto; }
.vca-compare-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr;
    gap: 14px;
    align-items: stretch;
}
.vca-compare-row__k {
    display: flex; align-items: center;
    padding: 16px 18px;
    font-size: 14px; font-weight: 800;
    color: #111;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
}
.vca-compare-row__before,
.vca-compare-row__after {
    position: relative;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}
.vca-compare-row__before {
    background: #fff;
    border: 1px solid rgba(236, 32, 36, 0.20);
    color: rgba(0,0,0,0.7);
}
.vca-compare-row__after {
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #111; font-weight: 600;
}
.vca-compare-row__before > span,
.vca-compare-row__after  > span {
    display: block;
    font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 4px;
}
.vca-compare-row__before > span { color: var(--vca-red-deep); }
.vca-compare-row__after  > span { color: var(--vca-emerald-deep); }
@media (max-width: 767px) { .vca-compare-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   7. WHY VULNERABLE cards  ·  dark bg
   ========================================================================== */
.vca-reason-card {
    display: flex; gap: 14px;
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 18px;
    padding: 24px 22px;
    height: 100%;
    transition: transform 240ms ease, border-color 240ms ease;
}
.vca-reason-card:hover { transform: translateY(-4px); border-color: var(--vca-border-hi); }
.vca-reason-card__bullet {
    flex: 0 0 36px; width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--vca-grad-em);
    color: #fff;
}
.vca-reason-card__title { font-size: 17px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.vca-reason-card__body  { font-size: 14.5px; line-height: 1.6; color: var(--vca-muted); }

/* ==========================================================================
   8. FRAMEWORKS  ·  light bg
   ========================================================================== */
.vca-frameworks { background: #fafafa; color: #111; }
.vca-frameworks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 1140px;
    margin: 0 auto;
}
.vca-framework-chip {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 18px 20px;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    transition-delay: var(--vca-delay, 0ms);
}
.vca-framework-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 16px 32px -16px rgba(16, 185, 129, 0.3);
}
.vca-framework-chip strong {
    display: block;
    font-size: 15px; font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}
.vca-framework-chip span {
    font-size: 12.5px; color: rgba(0,0,0,0.55);
    line-height: 1.4;
}

/* ==========================================================================
   9. INDUSTRIES  ·  dark bg
   ========================================================================== */
.vca-industry-chip {
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 18px 14px;
    min-height: 88px;
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 14px;
    font-size: 14.5px; font-weight: 700;
    color: rgba(255,255,255,0.88);
    transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}
.vca-industry-chip:hover {
    transform: translateY(-3px);
    border-color: var(--vca-border-hi);
    background: rgba(16, 185, 129, 0.10);
}

/* ==========================================================================
   10. CALC CTA  ·  dark
   ========================================================================== */
.vca-calc-cta { background: var(--vca-bg); padding-top: 64px; padding-bottom: 64px; }
.vca-calc-cta__card {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    align-items: stretch;
    background:
        radial-gradient(60% 80% at 0% 0%, rgba(236, 32, 36, 0.18) 0%, transparent 65%),
        radial-gradient(60% 80% at 100% 100%, rgba(16, 185, 129, 0.18) 0%, transparent 65%),
        linear-gradient(160deg, #181c24 0%, #0b0e12 100%);
    border: 1px solid var(--vca-border-hi);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 28px 60px -28px rgba(16, 185, 129, 0.45);
    overflow: hidden;
}
.vca-calc-cta__title { color: #fff; font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; line-height: 1.2; margin: 0 0 14px; letter-spacing: -0.01em; }
.vca-calc-cta__sub { color: var(--vca-muted); font-size: 15.5px; line-height: 1.65; margin: 0 0 20px; }
.vca-calc-cta__features { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 24px; }
.vca-calc-cta__features li {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
}
.vca-calc-cta__features strong {
    font-size: 16px; font-weight: 800;
    background: var(--vca-grad-red-em);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vca-calc-cta__features span { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }
.vca-calc-cta__widget {
    background: #06080a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex; flex-direction: column; gap: 12px;
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.06);
}
.vca-calc-cta__widget-head {
    display: flex; align-items: center; gap: 8px;
    padding-bottom: 14px; margin-bottom: 4px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.vca-calc-cta__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.vca-calc-cta__dot:nth-child(1) { background: #ff5a5d; }
.vca-calc-cta__dot:nth-child(2) { background: #fbbf24; }
.vca-calc-cta__dot:nth-child(3) { background: #34d399; }
.vca-calc-cta__widget-label {
    margin-left: 10px;
    font-family: ui-monospace, monospace;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.vca-calc-cta__widget-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.65); }
.vca-calc-cta__widget-row strong {
    color: #fff; font-weight: 600;
    font-family: ui-monospace, monospace;
    font-size: 13px; letter-spacing: -0.01em;
}
.vca-calc-cta__widget-total {
    margin-top: 8px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.10);
    border: 1px dashed rgba(16, 185, 129, 0.45);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: space-between;
}
.vca-calc-cta__widget-total span {
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.vca-calc-cta__widget-total strong {
    font-size: 22px; font-weight: 900;
    background: var(--vca-grad-em);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: -0.02em;
}
@media (max-width: 991px) { .vca-calc-cta__card { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; } }

/* ==========================================================================
   11. PRICING  ·  light bg
   ========================================================================== */
.vca-pricing { background: #fafafa; color: #111; }
.vca-price-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    padding: 32px 28px;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.vca-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -22px rgba(16, 185, 129, 0.35);
    border-color: rgba(16, 185, 129, 0.3);
}
.vca-price-card--featured {
    background: linear-gradient(160deg, #181c24 0%, #06080a 100%);
    color: #fff;
    border-color: var(--vca-border-hi);
    box-shadow: 0 28px 60px -22px rgba(16, 185, 129, 0.5);
}
.vca-price-card__badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--vca-grad-red-em);
    color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 999px;
}
.vca-price-card__head h3 { font-size: 22px; font-weight: 800; color: #111; margin: 0 0 6px; }
.vca-price-card__head p  { font-size: 14px; color: rgba(0,0,0,0.6); margin: 0 0 18px; min-height: 42px; }
.vca-price-card--featured .vca-price-card__head h3 { color: #fff; }
.vca-price-card--featured .vca-price-card__head p  { color: var(--vca-muted); }
.vca-price-card__price { margin: 6px 0 18px; padding-bottom: 18px; border-bottom: 1px dashed rgba(0,0,0,0.1); }
.vca-price-card--featured .vca-price-card__price { border-bottom-color: var(--vca-border); }
.vca-price-card__amount {
    display: block;
    font-size: 32px; font-weight: 900; line-height: 1;
    background: var(--vca-grad-red-em);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vca-price-card__per { display: block; font-size: 13px; color: rgba(0,0,0,0.55); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.vca-price-card--featured .vca-price-card__per { color: var(--vca-muted-2); }
.vca-price-card__list { flex: 1 1 auto; display: grid; gap: 10px; margin: 0 0 22px; }
.vca-price-card__list li {
    position: relative; padding-left: 24px;
    font-size: 14.5px; color: rgba(0,0,0,0.78); line-height: 1.5;
}
.vca-price-card__list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--vca-emerald); font-weight: 800;
}
.vca-price-card--featured .vca-price-card__list li { color: rgba(255,255,255,0.85); }
.vca-price-card--featured .vca-price-card__list li::before { color: var(--vca-emerald-soft); }

/* ==========================================================================
   12. CASES  ·  dark bg
   ========================================================================== */
.vca-case-card {
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 20px;
    padding: 28px 26px;
    height: 100%;
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.vca-case-card:hover {
    transform: translateY(-6px);
    border-color: var(--vca-border-hi);
    box-shadow: 0 28px 50px -22px rgba(16, 185, 129, 0.35);
}
.vca-case-card__tag {
    display: inline-block;
    font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--vca-emerald-soft);
    background: var(--vca-emerald-faint);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 5px 11px; border-radius: 999px;
    margin-bottom: 14px;
}
.vca-case-card__title { font-size: 19px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.vca-case-card__body  { font-size: 14.5px; line-height: 1.65; color: var(--vca-muted); margin: 0 0 18px; }
.vca-case-card__kpis { padding-top: 16px; border-top: 1px dashed var(--vca-border); }
.vca-case-card__kpis li { display: flex; flex-direction: column; gap: 2px; }
.vca-case-card__kpis strong {
    font-size: 18px; font-weight: 800;
    background: var(--vca-grad-red-em);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vca-case-card__kpis span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vca-muted-2); }

/* ==========================================================================
   13. WHY  ·  light bg
   ========================================================================== */
.vca-why { background: #fafafa; color: #111; }
.vca-why-card {
    display: flex; gap: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 24px 22px;
    height: 100%;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.vca-why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 22px 40px -22px rgba(16, 185, 129, 0.3);
}
.vca-why-card__bullet {
    flex: 0 0 36px; width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--vca-grad-em);
    color: #fff;
}
.vca-why-card__title { font-size: 17px; font-weight: 800; color: #111; margin: 0 0 6px; }
.vca-why-card__body  { font-size: 14.5px; line-height: 1.6; color: rgba(0,0,0,0.66); }

/* ==========================================================================
   14. SPECIALISTS  ·  dark bg
   ========================================================================== */
.vca-specialist-card {
    background: var(--vca-card);
    border: 1px solid var(--vca-border);
    border-radius: 22px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: transform 240ms ease, border-color 240ms ease;
}
.vca-specialist-card:hover { transform: translateY(-6px); border-color: var(--vca-border-hi); }
.vca-specialist-card__photo-wrap {
    width: 120px; height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    padding: 4px;
    background: var(--vca-grad-red-em);
}
.vca-specialist-card__photo {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--vca-card-hi);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 36px; font-weight: 800;
}
.vca-specialist-card__name { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.vca-specialist-card__role {
    font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--vca-emerald-soft);
    margin: 0 0 12px;
}
.vca-specialist-card__bio  { font-size: 14.5px; line-height: 1.65; color: var(--vca-muted); margin: 0 0 18px; }
.vca-specialist-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 700;
    color: var(--vca-emerald-soft);
    text-decoration: none;
}
.vca-specialist-card__link:hover { color: #fff; }
.vca-specialists__note { margin-top: 38px; color: var(--vca-muted-2); font-size: 14px; }

/* ==========================================================================
   15. CROSS-SELL  ·  dark
   ========================================================================== */
.vca-crosssell { background: var(--vca-bg); padding-top: 64px; padding-bottom: 64px; }
.vca-crosssell__card {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    background:
        radial-gradient(60% 80% at 0% 0%, rgba(236, 32, 36, 0.18) 0%, transparent 65%),
        radial-gradient(60% 80% at 100% 100%, rgba(16, 185, 129, 0.12) 0%, transparent 65%),
        linear-gradient(160deg, #181c24 0%, #0b0e12 100%);
    border: 1px solid var(--vca-border-hi);
    border-radius: 24px;
    padding: 38px 40px;
    box-shadow: 0 28px 60px -28px rgba(16, 185, 129, 0.4);
    overflow: hidden;
}
.vca-crosssell__title {
    color: #fff;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}
.vca-crosssell__title em { color: var(--vca-emerald-soft); font-style: italic; }
.vca-crosssell__sub { color: var(--vca-muted); font-size: 15.5px; line-height: 1.65; margin: 0; }
.vca-crosssell__sub strong { color: #fff; font-weight: 700; }
.vca-crosssell__sub a {
    color: var(--vca-emerald-soft);
    text-decoration: underline;
    text-decoration-color: rgba(16, 185, 129, 0.4);
    font-weight: 600;
}
.vca-crosssell__sub a:hover { color: #fff; }
.vca-crosssell__cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.vca-crosssell__secondary {
    color: var(--vca-emerald-soft);
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(16, 185, 129, 0.4);
    padding-bottom: 2px;
}
.vca-crosssell__secondary:hover { color: #fff; border-bottom-color: #fff; }
@media (max-width: 991px) {
    .vca-crosssell__card { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
    .vca-crosssell__cta { align-items: stretch; }
}

/* ==========================================================================
   16. LEAD FORM
   ========================================================================== */
.vca-leadform { background: var(--vca-bg-alt); padding-top: 64px; padding-bottom: 64px; }
.vca-leadform__card {
    background:
        radial-gradient(80% 60% at 0% 0%, rgba(16, 185, 129, 0.22) 0%, transparent 65%),
        radial-gradient(80% 60% at 100% 100%, rgba(236, 32, 36, 0.16) 0%, transparent 65%),
        linear-gradient(160deg, #181c24 0%, #0b0e12 100%);
    border: 1px solid var(--vca-border-hi);
    border-radius: 26px;
    padding: 44px;
    box-shadow: 0 30px 70px -28px rgba(16, 185, 129, 0.5);
}
.vca-leadform__title { color: #fff; font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; line-height: 1.2; margin: 0 0 12px; }
.vca-leadform__sub { color: var(--vca-muted); font-size: 15.5px; line-height: 1.65; margin: 0 0 18px; }
.vca-leadform__list { display: grid; gap: 8px; margin: 0; }
.vca-leadform__list li {
    position: relative; padding-left: 26px;
    color: rgba(255,255,255,0.78);
    font-size: 14px; line-height: 1.5;
}
.vca-leadform__list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 4px;
    background: var(--vca-grad-em);
    color: #fff;
    font-size: 11px; font-weight: 800;
}
.vca-leadform__form { display: grid; gap: 14px; }
.vca-leadform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 575px) { .vca-leadform__grid { grid-template-columns: 1fr; } }
.vca-leadform__field { display: flex; flex-direction: column; gap: 6px; }
.vca-leadform__label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.vca-leadform__label small {
    margin-left: 6px; font-size: 10.5px;
    color: rgba(255,255,255,0.45);
    text-transform: none; letter-spacing: 0.04em;
}
.vca-leadform__input,
.vca-leadform__textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-size: 14.5px;
    font-family: inherit;
    transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.vca-leadform__input::placeholder,
.vca-leadform__textarea::placeholder { color: rgba(255,255,255,0.30); }
.vca-leadform__input:focus,
.vca-leadform__textarea:focus {
    outline: none;
    border-color: var(--vca-emerald);
    background: rgba(16, 185, 129, 0.06);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.vca-leadform__textarea { min-height: 110px; resize: vertical; }
.vca-leadform__form .error-message { display: block; color: #fda4af; font-size: 12px; min-height: 14px; }
.vca-leadform__form .tm-input-wrap { position: relative; display: block; }
.vca-leadform__country {
    display: block;
    margin-top: 5px; padding-left: 2px;
    font-family: ui-monospace, monospace;
    font-size: 11px; font-weight: 500;
    color: #FFCC00;
    letter-spacing: 0.4px; line-height: 1.3;
    min-height: 14px;
}
.vca-leadform__nda {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    cursor: pointer; user-select: none;
}
.vca-leadform__nda input { accent-color: var(--vca-emerald); width: 16px; height: 16px; }
.vca-leadform__legal { margin: 4px 0 0; font-size: 12px; color: var(--vca-muted-2); line-height: 1.5; }
.vca-leadform__legal a { color: var(--vca-emerald-soft); text-decoration: underline; }
@media (max-width: 991px) { .vca-leadform__card { padding: 32px 24px; } }

/* ==========================================================================
   17. FAQ  ·  light bg
   ========================================================================== */
.vca-faq { background: #fafafa; color: #111; }
.vca-faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.vca-faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 18px 22px;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}
.vca-faq-item[open] {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 18px 36px -22px rgba(16, 185, 129, 0.3);
}
.vca-faq-item__q {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-size: 16px; font-weight: 700;
    color: #111;
}
.vca-faq-item__q::-webkit-details-marker { display: none; }
.vca-faq-item__icon { flex: 0 0 22px; width: 22px; height: 22px; position: relative; }
.vca-faq-item__icon::before,
.vca-faq-item__icon::after {
    content: ""; position: absolute; left: 50%; top: 50%;
    background: var(--vca-emerald);
    transition: transform 240ms ease;
}
.vca-faq-item__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.vca-faq-item__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.vca-faq-item[open] .vca-faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.vca-faq-item__a { margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: rgba(0,0,0,0.7); }
.vca-faq-item__a strong { color: var(--vca-emerald-deep); }

/* ==========================================================================
   INLINE CTA bands
   ========================================================================== */
.vca-inline-cta-band { padding: 30px 0; background: transparent; }
.vca-inline-cta-card {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 22px;
    background: var(--vca-grad-red-em);
    color: #fff;
    border-radius: 22px;
    padding: 28px 32px;
    box-shadow: 0 30px 60px -28px rgba(16, 185, 129, 0.5);
}
.vca-inline-cta-card__title { font-size: 22px; font-weight: 800; line-height: 1.25; margin: 0 0 4px; }
.vca-inline-cta-card__sub { font-size: 14.5px; color: rgba(255,255,255,0.9); max-width: 640px; }
.vca-inline-cta-band .vca-btn--primary {
    background: #fff;
    color: var(--vca-red-deep);
    box-shadow: 0 14px 28px -10px rgba(0,0,0,0.45);
}
.vca-inline-cta-band .vca-btn--primary:hover {
    background: #fff; color: var(--vca-red-deep);
    transform: translateY(-2px);
    box-shadow: 0 22px 40px -10px rgba(0,0,0,0.55);
}
@media (max-width: 767px) {
    .vca-inline-cta-card { flex-direction: column; align-items: flex-start; padding: 24px; }
    .vca-inline-cta-card .vca-btn { width: 100%; }
}

/* ==========================================================================
   18. FINAL CTA
   ========================================================================== */
.vca-final-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 96px 0;
    background:
        radial-gradient(ellipse at top, rgba(236, 32, 36, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.45) 0%, transparent 60%),
        linear-gradient(180deg, #0b0e12 0%, #06080a 100%);
}
.vca-final-cta__overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.vca-final-cta__inner { position: relative; z-index: 1; }
.vca-final-cta__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900; line-height: 1.15;
    color: #fff;
    margin: 12px 0 16px;
    letter-spacing: -0.02em;
}
.vca-final-cta__sub {
    font-size: 17px; line-height: 1.6;
    color: var(--vca-muted);
    max-width: 720px;
    margin: 0 auto 28px;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.vca-sticky-cta {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 1040;
    display: flex; gap: 8px;
    padding: 8px;
    background: rgba(6, 8, 10, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vca-border-hi);
    border-radius: 16px;
    box-shadow: 0 18px 40px -16px rgba(0,0,0,0.7);
}
.vca-sticky-cta__btn {
    flex: 1 1 50%;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 14px;
    border-radius: 11px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; text-align: center;
    transition: transform 180ms ease;
}
.vca-sticky-cta__btn:hover { transform: translateY(-1px); color: #fff; }
.vca-sticky-cta__btn--whatsapp { background: #25D366; color: #fff; }
.vca-sticky-cta__btn--primary  { background: var(--vca-grad-red-em); color: #fff; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.vca-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--vca-delay, 0ms);
}
.vca-reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .vca-reveal { opacity: 1; transform: none; transition: none; }
    .vca-hero__glow, .vca-hero__scanline, .vca-scanner__dot--green,
    .vca-scanner__row, .vca-eyebrow__dot { animation: none !important; }
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes vca-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.0); }
}
@keyframes vca-blink {
    0%, 60%, 100% { opacity: 1; }
    80%           { opacity: 0.4; }
}
@keyframes vca-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50%      { transform: translateY(-30px) translateX(20px); }
}
@keyframes vca-scan {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
@keyframes vca-row-in {
    from { opacity: 0; transform: translateX(8px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .vca-scanner { margin-top: 24px; }
    .vca-process-item { flex-direction: column; gap: 12px; }
    .vca-process-item__num { width: 44px; height: 44px; font-size: 16px; }
}
@media (max-width: 575px) {
    .vca-hero__title { font-size: 30px; }
    .vca-final-cta { padding: 64px 0; }
    .vca-final-cta__title { font-size: 28px; }
    .vca-scanner__row { grid-template-columns: 52px 1fr; padding: 10px 14px; }
    .vca-scanner__file, .vca-scanner__msg { font-size: 11.5px; }
}
