/*
Theme Name: Variavista Cosmic
Theme URI: https://variavista.es
Description: Tema personalizado Anti-Generic con diseño OLED Nebula para Variavista.
Author: Variavista
Author URI: https://variavista.es
Version: 1.2.0
License: Proprietary
Text Domain: variavista-cosmic
*/

/* ============================================================
   OLED NEBULA DESIGN SYSTEM v1.2 — CHICOTE-AUDITED
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Kanit:wght@300;400;500;600&display=swap');

:root {
    /* Variavista Cosmic Palette */
    --vv-dark: #3C2E42;
    --vv-blue: #38A1DB;
    --vv-pink: #EC74FC;
    --vv-yellow: #FFE100;

    /* OLED Nebula Foundations */
    --bg-void: #050508;
    --bg-surface: #0c0c10;
    --bg-elevated: #14141a;

    /* Typography — HIGH CONTRAST enforced */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-tertiary: rgba(255, 255, 255, 0.45);

    /* Borders & Glass */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.10);
    --border-hover: rgba(255, 255, 255, 0.18);

    /* Accretion Disk Gradient */
    --glow-blue: rgba(56, 161, 219, 0.15);
    --glow-pink: rgba(236, 116, 252, 0.15);
    --glow-yellow: rgba(255, 225, 0, 0.2);

    /* Motion */
    --ease-antigravity: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
    --duration-fast: 200ms;
    --duration-base: 400ms;
    --duration-slow: 800ms;

    /* Spacing Scale (4px base) — TIGHTER than v1.0 */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 80px;
    --space-10: 96px;

    /* Type Scale */
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Kanit', system-ui, sans-serif;

    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --text-xl: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
    --text-2xl: clamp(1.8rem, 1.4rem + 2vw, 2.8rem);
    --text-3xl: clamp(2.2rem, 1.6rem + 3vw, 4rem);
    --text-4xl: clamp(2.8rem, 2rem + 4vw, 5.5rem);

    /* Z-Index */
    --z-base: 1;
    --z-nav: 100;
    --z-overlay: 200;
    --z-canvas: -1;

    /* Container */
    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 80px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-void);
    overflow-x: hidden;
}

/* Nuclear override for OLED pages — beats Elementor/WP global styles */
body.vv-cosmic,
body.vv-cosmic h1,
body.vv-cosmic h2,
body.vv-cosmic h3,
body.vv-cosmic h4,
body.vv-cosmic h5,
body.vv-cosmic h6,
body.vv-cosmic p,
body.vv-cosmic li,
body.vv-cosmic span,
body.vv-cosmic div,
body.vv-cosmic label,
body.vv-cosmic td,
body.vv-cosmic th,
body.vv-cosmic dt,
body.vv-cosmic dd,
body.vv-cosmic figcaption,
body.vv-cosmic blockquote {
    color: #fff !important;
}

body.vv-cosmic strong,
body.vv-cosmic b {
    color: #fff !important;
}

body.vv-cosmic .vv-subtitle,
body.vv-cosmic .vv-service-hero__desc {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.vv-cosmic a:not(.vv-btn):not(.vv-nav__cta) {
    color: var(--neon-blue) !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--vv-pink);
    color: var(--bg-void);
}

/* ============================================================
   COSMIC BACKGROUND — Multi-layer Nebula Mesh
   ============================================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: var(--z-canvas);
    background:
        radial-gradient(ellipse at 20% 50%, var(--glow-blue) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, var(--glow-pink) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(60, 46, 66, 0.2) 0%, transparent 50%),
        var(--bg-void);
    animation: nebulaDrift 30s ease-in-out infinite alternate;
}

@keyframes nebulaDrift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    50% {
        filter: hue-rotate(10deg) brightness(1.05);
    }

    100% {
        filter: hue-rotate(-5deg) brightness(0.95);
    }
}

/* Film Grain Texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: var(--z-canvas);
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================================
   CONTAINER & LAYOUT
   ============================================================ */
.vv-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.vv-section {
    padding: var(--space-9) 0;
    position: relative;
}

.vv-section--compact {
    padding: var(--space-7) 0;
}

/* ============================================================
   TYPOGRAPHY — NUCLEAR CONTRAST
   ============================================================ */
.vv-heading {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #ffffff;
    /* FORCED WHITE — never invisible again */
}

.vv-heading--xl {
    font-size: var(--text-4xl);
}

.vv-heading--lg {
    font-size: var(--text-3xl);
}

.vv-heading--md {
    font-size: var(--text-2xl);
}

.vv-heading--sm {
    font-size: var(--text-xl);
}

/* Gradient Text — Accretion Glow (HIGH CONTRAST version) */
.vv-text-glow {
    background: linear-gradient(135deg, #ffffff 0%, var(--vv-blue) 35%, var(--vv-pink) 65%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--glow-blue));
}

/* Subtitle style */
.vv-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

.vv-label {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vv-blue);
    font-weight: 600;
}

/* ============================================================
   GLASSMORPHISM SURFACES
   ============================================================ */
.glass {
    background: rgba(12, 12, 16, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.glass--hover {
    transition: all var(--duration-base) var(--ease-antigravity);
}

.glass--hover:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--border-hover),
        0 0 60px -20px var(--glow-blue);
}

.glass-arctic {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow:
        0 4px 24px -8px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ============================================================
   NAVIGATION — Sticky Glass Header
   ============================================================ */
.vv-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--space-4) 0;
    transition: all var(--duration-base) var(--ease-antigravity);
}

.vv-nav.scrolled {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-3) 0;
}

.vv-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vv-nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    letter-spacing: -0.02em;
}

.vv-nav__logo img {
    height: 36px;
    width: auto;
}

.vv-nav__logo svg {
    height: 32px;
    width: auto;
}

.vv-nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    list-style: none;
}

.vv-nav__links a {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast) ease;
    position: relative;
}

.vv-nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vv-blue), var(--vv-pink));
    transition: width var(--duration-base) var(--ease-antigravity);
}

.vv-nav__links a:hover {
    color: var(--text-primary);
}

.vv-nav__links a:hover::after {
    width: 100%;
}

.vv-nav__cta {
    padding: var(--space-2) var(--space-5);
    border-radius: 100px;
    background: linear-gradient(135deg, var(--vv-blue), var(--vv-pink));
    color: #fff !important;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--duration-base) var(--ease-antigravity);
    box-shadow: 0 0 20px var(--glow-blue);
}

.vv-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--glow-blue), 0 0 60px var(--glow-pink);
}

.vv-nav__cta::after {
    display: none !important;
}

/* Mobile hamburger */
.vv-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.vv-nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--duration-base) var(--ease-antigravity);
    position: absolute;
    left: 0;
}

.vv-nav__toggle span:nth-child(1) {
    top: 0;
}

.vv-nav__toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.vv-nav__toggle span:nth-child(3) {
    bottom: 0;
}

.vv-nav__toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.vv-nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.vv-nav__toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.vv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vv-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vv-hero__canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.vv-hero__content {
    position: relative;
    z-index: var(--z-base);
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.vv-hero__title {
    margin-bottom: var(--space-5);
    animation: heroReveal 1.2s var(--ease-antigravity) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.vv-hero__subtitle {
    margin: 0 auto var(--space-7);
    animation: heroReveal 1.2s var(--ease-antigravity) 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.vv-hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: heroReveal 1.2s var(--ease-antigravity) 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.vv-hero__scroll {
    position: absolute;
    bottom: var(--space-7);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-tertiary);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollPulse 2s ease-in-out infinite;
}

.vv-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-tertiary), transparent);
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(8px);
    }
}

/* ============================================================
   BUTTONS — MAXIMUM CONTRAST
   ============================================================ */
.vv-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    border: none;
    transition: all var(--duration-base) var(--ease-antigravity);
    text-decoration: none !important;
    letter-spacing: 0.01em;
}

.vv-btn--primary {
    background: linear-gradient(135deg, var(--vv-blue) 0%, var(--vv-pink) 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px var(--glow-blue);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.vv-btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--glow-blue), 0 0 60px var(--glow-pink);
    color: #ffffff !important;
}

.vv-btn--ghost {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.vv-btn--ghost:hover {
    border-color: var(--vv-blue) !important;
    background: rgba(56, 161, 219, 0.15) !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.vv-btn--cta {
    background: var(--vv-yellow) !important;
    color: #0a0a0a !important;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--glow-yellow);
    text-shadow: none !important;
}

.vv-btn--cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--glow-yellow);
    color: #0a0a0a !important;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.vv-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.vv-service-card {
    padding: var(--space-6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vv-service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56, 161, 219, 0.15), rgba(236, 116, 252, 0.15));
    color: var(--vv-blue);
    font-size: 24px;
    transition: all var(--duration-base) var(--ease-antigravity);
}

.vv-service-card__icon svg {
    stroke: var(--vv-blue);
    width: 24px;
    height: 24px;
}

.vv-service-card:hover .vv-service-card__icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px var(--glow-blue);
}

.vv-service-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
    color: #ffffff;
}

.vv-service-card__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Orbital glow on hover */
.vv-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, transparent, var(--vv-blue), transparent 30%);
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-antigravity);
    animation: orbitalSpin 8s linear infinite;
}

.vv-service-card:hover::before {
    opacity: 0.08;
}

@keyframes orbitalSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   KIT DIGITAL CTA
   ============================================================ */
.vv-kit {
    text-align: center;
    position: relative;
}

.vv-kit__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
    background: rgba(255, 225, 0, 0.1);
    border: 1px solid rgba(255, 225, 0, 0.25);
    color: var(--vv-yellow);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-5);
}

.vv-kit__amount {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--vv-yellow);
    /* SOLID COLOR — no broken gradient clip */
    text-shadow: 0 0 40px rgba(255, 225, 0, 0.3);
    margin-bottom: var(--space-4);
}

/* ============================================================
   WHY VARIAVISTA — Differentiators
   ============================================================ */
.vv-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.vv-why__item {
    padding: var(--space-6);
    text-align: center;
}

.vv-why__number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--vv-yellow) !important;
    text-shadow: 0 0 30px var(--glow-yellow);
    margin-bottom: var(--space-2);
}

/* ============================================================
   REVIEWS TICKER
   ============================================================ */
.vv-marquee-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.vv-marquee-track {
    display: flex;
    gap: var(--space-5);
    animation: tickerScroll 60s linear infinite;
    width: max-content;
}

.vv-marquee-track:hover {
    animation-play-state: paused;
}

.vv-reviews__track {
    display: flex;
    gap: var(--space-5);
    animation: tickerScroll 60s linear infinite;
    width: max-content;
}

.vv-reviews__track:hover {
    animation-play-state: paused;
}

.vv-review-card {
    flex-shrink: 0;
    width: 320px;
    padding: var(--space-5);
}

.vv-review-card__stars {
    color: var(--vv-yellow);
    margin-bottom: var(--space-3);
    font-size: 14px;
    letter-spacing: 2px;
}

.vv-review-card__text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
}

.vv-review-card__author {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    font-weight: 500;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.vv-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.vv-blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
}

/* .vv-blog-card__img — applied to <img> element */
img.vv-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform var(--duration-slow) var(--ease-antigravity),
                filter 0.5s ease;
}

.vv-blog-card:hover img.vv-blog-card__img {
    transform: scale(1.06);
    filter: grayscale(0);
}

.vv-blog-card__body {
    padding: var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vv-blog-card__date {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--space-2);
}

.vv-blog-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
    color: #ffffff;
    transition: color var(--duration-fast) ease;
}

.vv-blog-card__title a {
    color: inherit;
}

.vv-blog-card:hover .vv-blog-card__title {
    color: var(--vv-blue);
}

/* ============================================================
   FOOTER
   ============================================================ */
.vv-footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-8) 0 var(--space-7);
}

.vv-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-7);
    margin-bottom: var(--space-8);
}

.vv-footer__brand {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.vv-footer__logo-svg svg {
    height: 28px;
    width: auto;
}

.vv-footer__desc {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
    max-width: 300px;
    font-weight: 300;
}

.vv-footer__heading {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: var(--space-4);
}

.vv-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.vv-footer__links a {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: color var(--duration-fast) ease;
    font-weight: 300;
}

.vv-footer__links a:hover {
    color: var(--vv-blue);
}

.vv-footer__social {
    display: flex;
    gap: var(--space-3);
}

.vv-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-base) var(--ease-antigravity);
    color: var(--text-secondary);
}

.vv-footer__social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.vv-footer__social a:hover {
    border-color: var(--vv-blue);
    background: rgba(56, 161, 219, 0.1);
    transform: translateY(-2px);
    color: var(--vv-blue);
}

.vv-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

/* ============================================================
   SECTION REVEAL ANIMATIONS
   ============================================================ */
.vv-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-antigravity),
        transform var(--duration-slow) var(--ease-antigravity);
}

.vv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.vv-reveal-delay-1 {
    transition-delay: 100ms;
}

.vv-reveal-delay-2 {
    transition-delay: 200ms;
}

.vv-reveal-delay-3 {
    transition-delay: 300ms;
}

.vv-reveal-delay-4 {
    transition-delay: 400ms;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.vv-section-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.vv-section-header .vv-label {
    margin-bottom: var(--space-3);
    display: block;
}

.vv-section-header .vv-heading {
    margin-bottom: var(--space-4);
}

.vv-section-header .vv-subtitle {
    margin: 0 auto;
}

/* ============================================================
   RESPONSIVE — Mobile First Overrides
   ============================================================ */
@media (max-width: 1024px) {
    .vv-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vv-nav__links {
        display: none;
    }

    .vv-nav__toggle {
        display: block;
        z-index: 10001;
    }

    .vv-nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 8, 0.99);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 100px var(--space-6) var(--space-8);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        gap: var(--space-6);
        animation: vv-menu-fade-in 0.3s ease;
        list-style: none;
    }

    @keyframes vv-menu-fade-in {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .vv-nav__links.open li {
        list-style: none;
    }

    .vv-nav__links.open a {
        font-size: 1.5rem;
        color: var(--text-primary);
        font-weight: 500;
        letter-spacing: 0.02em;
        padding: var(--space-3) var(--space-5);
        display: block;
        transition: color 0.2s ease;
    }

    .vv-nav__links.open a:hover {
        color: var(--vv-blue);
    }

    .vv-nav__links.open .vv-nav__cta {
        font-size: 1.2rem;
        margin-top: var(--space-4);
    }

    .vv-services__grid {
        grid-template-columns: 1fr;
    }

    .vv-why__grid {
        grid-template-columns: 1fr;
    }

    .vv-blog__grid {
        grid-template-columns: 1fr;
    }

    .vv-footer__grid {
        grid-template-columns: 1fr;
    }

    .vv-hero {
        min-height: 90vh;
    }

    .vv-section {
        padding: var(--space-8) 0;
    }

    .vv-footer__bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vv-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .vv-review-card {
        width: 280px;
    }
}

/* ============================================================
   QUIÉN SOY — Page-specific Components
   ============================================================ */

/* Mini Hero — No black hole canvas, cosmic mesh background */
.vv-hero--mini {
    min-height: 60vh;
    position: relative;
}

.vv-hero--mini__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(236, 116, 252, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(56, 161, 219, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 20%, rgba(60, 46, 66, 0.2) 0%, transparent 60%);
    animation: nebulaDrift 30s ease-in-out infinite alternate;
}

/* Nav active state */
.vv-nav__active {
    color: var(--text-primary) !important;
}

.vv-nav__active::after {
    width: 100% !important;
}

/* Mission values row */
.vv-mission__values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.vv-mission__value {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--duration-base) var(--ease-antigravity);
}

.vv-mission__value:hover {
    border-color: var(--vv-blue);
    background: rgba(56, 161, 219, 0.08);
    transform: translateY(-2px);
}

.vv-mission__emoji {
    font-size: 1.1rem;
}

/* Help cards icon */
.vv-help-card {
    padding: var(--space-6);
    text-align: center;
}

.vv-help-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56, 161, 219, 0.15), rgba(236, 116, 252, 0.15));
    color: var(--vv-blue);
    transition: all var(--duration-base) var(--ease-antigravity);
}

.vv-help-card__icon svg {
    stroke: var(--vv-blue);
}

.vv-help-card:hover .vv-help-card__icon {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px var(--glow-blue);
}

/* Timeline */
.vv-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: var(--space-7);
}

.vv-timeline__line {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--vv-blue), var(--vv-pink), transparent);
    opacity: 0.3;
}

.vv-timeline__item {
    position: relative;
    margin-bottom: var(--space-7);
}

.vv-timeline__item:last-child {
    margin-bottom: 0;
}

.vv-timeline__dot {
    position: absolute;
    left: calc(-1 * var(--space-7) + 10px);
    top: var(--space-6);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-void);
    border: 2px solid var(--vv-blue);
    z-index: 2;
    transition: all var(--duration-base) var(--ease-antigravity);
    box-shadow: 0 0 12px var(--glow-blue);
}

.vv-timeline__dot--active {
    background: var(--vv-blue);
    box-shadow: 0 0 20px var(--glow-blue), 0 0 40px rgba(56, 161, 219, 0.2);
}

.vv-timeline__card {
    padding: var(--space-6);
}

.vv-timeline__era {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vv-pink);
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-2);
}

/* About me grid */
.vv-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.vv-about-card {
    padding: var(--space-5);
    text-align: center;
    transition: all var(--duration-base) var(--ease-antigravity);
}

.vv-about-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.vv-about-card__emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-3);
}

.vv-about-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive — Quien Soy page */
@media (max-width: 1024px) {
    .vv-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vv-hero--mini {
        min-height: 50vh;
    }

    .vv-about-grid {
        grid-template-columns: 1fr;
    }

    .vv-timeline {
        padding-left: var(--space-6);
    }

    .vv-timeline__line {
        left: 12px;
    }

    .vv-timeline__dot {
        left: calc(-1 * var(--space-6) + 6px);
        width: 12px;
        height: 12px;
    }

    .vv-mission__values {
        gap: var(--space-3);
    }
}

/* ============================================================
   NUCLEAR ELEMENTOR OVERRIDE
   .elementor-kit-8940 a { color: #38A1DB } kills our buttons.
   We fight back with equal specificity + !important + later source order.
   ============================================================ */
.elementor-kit-8940 a.vv-btn--primary,
.elementor-kit-8940 .vv-btn--primary,
body .vv-btn--primary,
a.vv-btn--primary {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.elementor-kit-8940 a.vv-btn--ghost,
.elementor-kit-8940 .vv-btn--ghost,
body .vv-btn--ghost,
a.vv-btn--ghost {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.elementor-kit-8940 a.vv-btn--cta,
.elementor-kit-8940 .vv-btn--cta,
body .vv-btn--cta,
a.vv-btn--cta {
    color: #0a0a0a !important;
    text-shadow: none !important;
}

.elementor-kit-8940 .vv-why__number,
body .vv-why__number {
    color: var(--vv-yellow) !important;
}

.elementor-kit-8940 .vv-kit-digital__amount,
body .vv-kit-digital__amount {
    color: var(--vv-yellow) !important;
}

/* Force ALL links inside vv- sections to not inherit Elementor blue */
.elementor-kit-8940 .vv-footer__links a,
.elementor-kit-8940 .vv-nav__links a,
.elementor-kit-8940 .vv-blog-card__title a {
    color: inherit !important;
}

.elementor-kit-8940 .vv-footer__links a:hover,
.elementor-kit-8940 .vv-blog-card:hover .vv-blog-card__title a {
    color: var(--vv-blue) !important;
}

/* ============================================================
   NUCLEAR DARK BACKGROUND — Kill ALL white from Elementor wrappers
   The hero was white because Elementor's page container forces white bg.
   This overrides EVERYTHING to match our void #050508 theme.
   ============================================================ */
body.page,
body.home,
body main,
body article,
body .page-content,
body .entry-content,
body .site-main,
body .elementor,
body .elementor-inner,
body .elementor-section-wrap,
body .elementor-element,
body .elementor-widget-wrap,
body .elementor-widget-container,
body [data-elementor-type="wp-page"],
body [data-elementor-type="wp-post"],
body .elementor-page,
body .elementor-location-single,
.elementor-kit-8940,
.elementor-kit-8940 .elementor-section,
.elementor-kit-8940 .elementor-container,
.elementor-kit-8940 .elementor-element {
    background-color: var(--bg-void, #050508) !important;
}

/* Canvas and hero specific — ensure no white bleed */
#vv-hero-canvas,
#vv-hero-canvas canvas,
.vv-hero {
    background-color: #050508 !important;
}

/* --- HERO TEXT SHADOWS --- */
.vv-hero__subtitle,
.vv-label {
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 10;
    /* Ensure text is above canvas */
}

/* ============================================================
   PARTNERS GRID — Homepage
   ============================================================ */
.vv-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.vv-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-5) var(--space-4);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
}

.vv-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(56, 161, 219, 0.15), 0 0 60px rgba(139, 92, 246, 0.1);
}

.vv-partner-card__logo {
    max-width: 160px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.vv-partner-card:hover .vv-partner-card__logo {
    filter: brightness(1.1);
}

.vv-partner-card__brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vv-partner-card__brand-logo svg {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.vv-partner-card:hover .vv-partner-card__brand-logo svg {
    opacity: 1;
}

.vv-partner-card__tier {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.vv-partner-card__ionos-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: white;
    font-family: var(--font-display);
    text-shadow: 0 0 20px rgba(56, 161, 219, 0.3);
}

.vv-partner-card__manychat-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
    display: inline-flex;
    align-items: center;
}

.vv-partner-card__label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.vv-partner-card__icon-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--vv-blue);
}

.vv-partner-card__icon-badge svg {
    stroke: var(--vv-blue);
    filter: drop-shadow(0 0 8px rgba(56, 161, 219, 0.4));
}

.vv-partner-card__icon-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.vv-partner-card__stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vv-partner-card__rating {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--vv-blue), var(--vv-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vv-partner-card__star-icons {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

@media (max-width: 768px) {
    .vv-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
}

@media (max-width: 480px) {
    .vv-partners-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vv-partner-card {
        padding: var(--space-4) var(--space-3);
        min-height: 120px;
    }
}

/* ============================================================
   SINGLE SERVICE PAGE — OLED Nebula
   ============================================================ */

/* Service Hero — Compact Cosmic */
.vv-service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--space-10) + 40px);
    padding-bottom: var(--space-9);
    overflow: hidden;
}

/* ── ANIMATED NEBULA — ALL INNER PAGE HEROES ── */
.vv-service-hero::before,
.vv-contact-hero::before,
.vv-hero--mini::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    opacity: 0.85;
    background:
        radial-gradient(ellipse 800px 500px at 20% 30%, rgba(139, 92, 246, 0.35), transparent 70%),
        radial-gradient(ellipse 700px 450px at 80% 20%, rgba(6, 182, 212, 0.3), transparent 70%),
        radial-gradient(ellipse 500px 400px at 50% 70%, rgba(236, 116, 252, 0.22), transparent 70%),
        radial-gradient(ellipse 400px 400px at 70% 60%, rgba(56, 161, 219, 0.18), transparent 60%),
        radial-gradient(ellipse 450px 350px at 30% 80%, rgba(168, 85, 247, 0.15), transparent 60%);
    animation: nebulaFlow 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.vv-service-hero::after,
.vv-contact-hero::after,
.vv-hero--mini::after {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    opacity: 0.65;
    background:
        radial-gradient(ellipse 600px 450px at 60% 40%, rgba(6, 182, 212, 0.3), transparent 65%),
        radial-gradient(ellipse 650px 500px at 25% 60%, rgba(139, 92, 246, 0.25), transparent 65%),
        radial-gradient(ellipse 400px 350px at 75% 75%, rgba(236, 116, 252, 0.18), transparent 60%);
    animation: nebulaFlow2 25s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes nebulaFlow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(-5%, 3%) rotate(2deg) scale(1.05);
    }

    50% {
        transform: translate(3%, -4%) rotate(-1deg) scale(0.98);
    }

    75% {
        transform: translate(-2%, 5%) rotate(3deg) scale(1.03);
    }

    100% {
        transform: translate(4%, -2%) rotate(-2deg) scale(1.02);
    }
}

@keyframes nebulaFlow2 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1.02);
    }

    33% {
        transform: translate(4%, -3%) rotate(-2deg) scale(0.97);
    }

    66% {
        transform: translate(-3%, 4%) rotate(2deg) scale(1.04);
    }

    100% {
        transform: translate(2%, -5%) rotate(-3deg) scale(1);
    }
}

/* Ensure hero content sits above nebula */
.vv-service-hero>*,
.vv-contact-hero>*,
.vv-hero--mini>* {
    position: relative;
    z-index: 1;
}

.vv-service-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vv-service-hero__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(56, 161, 219, 0.2), rgba(236, 116, 252, 0.2));
    box-shadow: 0 0 40px var(--glow-blue), 0 0 80px var(--glow-pink);
    animation: iconFloat 4s ease-in-out infinite;
}

.vv-service-hero__icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--vv-blue);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.vv-service-hero__desc {
    margin: 0 auto var(--space-7);
    max-width: 600px;
}

.vv-service-hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Breadcrumb */
.vv-breadcrumb {
    margin-bottom: var(--space-7);
    text-align: center;
}

.vv-breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    list-style: none;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vv-breadcrumb li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-tertiary);
}

.vv-breadcrumb li:not(:last-child)::after {
    content: '›';
    color: var(--text-tertiary);
    font-size: 1.2em;
}

.vv-breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--duration-fast) ease;
}

.vv-breadcrumb a:hover {
    color: var(--vv-blue);
}

.vv-breadcrumb li:last-child {
    color: var(--vv-blue);
    font-weight: 600;
}

/* Service Content — Glass-wrapped Gutenberg */
.vv-service-content {
    padding: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.vv-service-content h3,
.vv-service-content h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-top: var(--space-7);
    margin-bottom: var(--space-4);
}

.vv-service-content h3 {
    font-size: var(--text-xl);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(135deg, #ffffff 0%, var(--vv-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vv-service-content h4 {
    font-size: var(--text-lg);
    color: var(--vv-blue);
}

.vv-service-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-4);
    font-weight: 300;
}

.vv-service-content strong {
    color: var(--text-primary);
    font-weight: 500;
}

.vv-service-content em {
    color: var(--text-secondary);
    font-style: italic;
}

.vv-service-content a {
    color: var(--vv-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--duration-fast) ease;
}

.vv-service-content a:hover {
    color: var(--vv-pink);
}

/* Lists restyled as feature items */
.vv-service-content ul,
.vv-service-content ol {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 var(--space-6);
    display: grid;
    gap: var(--space-3);
}

.vv-service-content li {
    padding: var(--space-4) var(--space-5);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    transition: all var(--duration-base) var(--ease-antigravity);
    position: relative;
    padding-left: var(--space-7);
}

.vv-service-content li::before {
    content: '';
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vv-blue), var(--vv-pink));
    box-shadow: 0 0 12px var(--glow-blue);
}

.vv-service-content li:hover {
    border-color: var(--border-hover);
    background: rgba(56, 161, 219, 0.05);
}

/* Separators restyled */
.vv-service-content hr,
.vv-service-content .wp-block-separator {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-default), var(--vv-blue), var(--border-default), transparent);
    margin: var(--space-7) 0;
}

/* Related services grid */
.vv-services__grid--related {
    grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   SINGLE SERVICE — Responsive
   ============================================================ */
@media (max-width: 900px) {
    .vv-services__grid--related {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-service-content {
        padding: var(--space-6) var(--space-5);
    }
}

@media (max-width: 600px) {
    .vv-service-hero {
        min-height: 50vh;
        padding-top: calc(var(--space-9) + 40px);
    }

    .vv-services__grid--related {
        grid-template-columns: 1fr;
    }

    .vv-service-content {
        padding: var(--space-5) var(--space-4);
    }

    .vv-service-hero__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   KIT DIGITAL — Funnel Page
   ============================================================ */

/* Accent gradient text */
.vv-accent-gradient {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero */
.vv-kit-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: calc(var(--space-9) + 60px) 0 var(--space-8);
    text-align: center;
}

.vv-kit-hero__logos {
    margin-bottom: var(--space-6);
}

.vv-kit-hero__banner {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.vv-kit-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.vv-kit-hero__desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.vv-kit-hero__actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Explainer glass */
.vv-kit-explainer p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.vv-kit-explainer p:last-child {
    margin-bottom: 0;
}

.vv-kit-explainer strong {
    color: var(--text-primary);
}

/* Category Grid — 12 cards */
.vv-kit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.vv-kit-card {
    padding: var(--space-6) var(--space-5);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vv-kit-card:hover {
    transform: translateY(-4px);
}

.vv-kit-card__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.vv-kit-card__title {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.vv-kit-card__amount {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vv-kit-card__amount strong {
    display: inline-block;
    font-size: 1.3rem;
    color: #a78bfa;
    font-family: var(--ff-heading);
}

.vv-kit-card__segments {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

/* Segments — 3 cards */
.vv-kit-segments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.vv-kit-segment {
    padding: var(--space-6);
    text-align: center;
}

.vv-kit-segment__badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-magenta));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-3);
}

.vv-kit-segment h3 {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.vv-kit-segment p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-3);
}

.vv-kit-segment__amount {
    display: inline-block;
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #a78bfa;
}

/* WPForms restyling for OLED theme */
.vv-kit-form .wpforms-container {
    background: transparent !important;
}

.vv-kit-form .wpforms-field-label {
    color: var(--text-primary) !important;
    font-family: var(--ff-heading) !important;
    font-size: 0.9rem !important;
}

.vv-kit-form input[type="text"],
.vv-kit-form input[type="email"],
.vv-kit-form input[type="tel"],
.vv-kit-form textarea,
.vv-kit-form select {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.vv-kit-form input:focus,
.vv-kit-form textarea:focus,
.vv-kit-form select:focus {
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.15) !important;
    outline: none !important;
}

.vv-kit-form .wpforms-submit-container button,
.vv-kit-form .wpforms-submit {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-magenta)) !important;
    border: none !important;
    color: #fff !important;
    font-family: var(--ff-heading) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 14px 36px !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    width: 100% !important;
}

.vv-kit-form .wpforms-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 32px rgba(123, 97, 255, 0.3) !important;
}

/* KIT DIGITAL — Responsive */
@media (max-width: 900px) {
    .vv-kit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-kit-segments {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .vv-kit-hero {
        min-height: 60vh;
        padding-top: calc(var(--space-9) + 40px);
    }

    .vv-kit-hero__banner {
        max-width: 300px;
    }

    .vv-kit-grid {
        grid-template-columns: 1fr;
    }

    .vv-kit-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .vv-kit-form {
        padding: var(--space-5) var(--space-4) !important;
    }
}


/* ================================================================
   SINGLE TRABAJO (Portfolio) — Template Styles
   ================================================================ */

.vv-trabajo-hero__image {
    margin-top: var(--space-7);
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.vv-trabajo-hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    animation: vv-image-scroll 12s ease-in-out infinite alternate;
}

@keyframes vv-image-scroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(calc(-100% + var(--scroll-viewport-h, 525px))); }
}

/* Pause scroll on hover — let user see a specific area */
.vv-trabajo-hero__image:hover .vv-trabajo-hero__img {
    animation-play-state: paused;
}

/* Force white text in Gutenberg content inside the glass card */
.vv-trabajo-content,
.vv-trabajo-content p,
.vv-trabajo-content li,
.vv-trabajo-content span {
    color: var(--text-secondary) !important;
}

.vv-trabajo-content h2,
.vv-trabajo-content h3,
.vv-trabajo-content h4 {
    color: var(--text-primary) !important;
    font-family: var(--ff-heading);
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
}

.vv-trabajo-content h2 {
    font-size: 1.5rem;
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vv-trabajo-content strong {
    color: var(--text-primary) !important;
}

.vv-trabajo-content a {
    color: var(--neon-blue) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vv-trabajo-content a:hover {
    color: var(--neon-magenta) !important;
}

.vv-trabajo-content ul,
.vv-trabajo-content ol {
    padding-left: 1.5rem;
    margin: var(--space-3) 0;
}

.vv-trabajo-content li {
    margin-bottom: var(--space-2);
}

/* Related project cards with thumbnails */
.vv-trabajo-card__thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: var(--space-3);
}

.vv-trabajo-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vv-trabajo-card:hover .vv-trabajo-card__thumb img {
    transform: scale(1.05);
}

/* Also ensure vv-service-content colors work the same for services */
.vv-service-content p,
.vv-service-content li,
.vv-service-content span {
    color: var(--text-secondary) !important;
}

.vv-service-content h2,
.vv-service-content h3,
.vv-service-content h4 {
    color: var(--text-primary) !important;
}

.vv-service-content strong {
    color: var(--text-primary) !important;
}

.vv-service-content a {
    color: var(--neon-blue) !important;
}

@media (max-width: 768px) {
    .vv-trabajo-hero__image {
        margin-top: var(--space-5);
        aspect-ratio: 1 / 1;
        max-width: 100%;
    }

    .vv-trabajo-hero__img {
        animation-duration: 10s;
    }

    .vv-trabajo-content h2 {
        font-size: 1.3rem;
    }
}

/* =============================================================
   CONTACT PAGE — OLED Nebula
   ============================================================= */
.vv-contact-hero {
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vv-contact-hero .vv-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon-blue);
    margin-bottom: var(--space-3);
}

.vv-contact-hero h1 {
    margin-bottom: var(--space-4);
}

.vv-contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-8);
    align-items: start;
}

.vv-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.vv-contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-primary) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.vv-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(138, 92, 246, 0.15);
}

.vv-contact-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(138, 92, 246, 0.15);
    color: var(--neon-blue);
}

.vv-contact-card__icon--whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.vv-contact-card--whatsapp:hover {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.15) !important;
}

.vv-contact-card__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.vv-contact-card__value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary) !important;
}

.vv-contact-card__sub {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.vv-contact-form-wrap {
    padding: var(--space-8);
    border-radius: 20px;
}

/* WPForms dark theme overrides */
.vv-contact-form-wrap .wpforms-form input[type="text"],
.vv-contact-form-wrap .wpforms-form input[type="email"],
.vv-contact-form-wrap .wpforms-form input[type="tel"],
.vv-contact-form-wrap .wpforms-form input[type="url"],
.vv-contact-form-wrap .wpforms-form textarea,
.vv-contact-form-wrap .wpforms-form select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vv-contact-form-wrap .wpforms-form input:focus,
.vv-contact-form-wrap .wpforms-form textarea:focus,
.vv-contact-form-wrap .wpforms-form select:focus {
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 0 3px rgba(138, 92, 246, 0.2) !important;
    outline: none !important;
}

.vv-contact-form-wrap .wpforms-form .wpforms-field-label {
    color: var(--text-primary) !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em;
}

.vv-contact-form-wrap .wpforms-form .wpforms-field-sublabel {
    color: var(--text-secondary) !important;
}

.vv-contact-form-wrap .wpforms-form button[type="submit"],
.vv-contact-form-wrap .wpforms-form .wpforms-submit {
    background: linear-gradient(135deg, var(--neon-blue), #c084fc) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.vv-contact-form-wrap .wpforms-form button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(138, 92, 246, 0.3) !important;
}

/* Map section */
.vv-contact-map {
    border-radius: 16px;
    overflow: hidden;
}

.vv-contact-map iframe {
    display: block;
}

/* Contact schedule extra styles */
.vv-contact-schedule {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    border-radius: 14px;
}

.vv-contact-schedule .vv-contact-card__icon {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
}

/* Responsive contact */
@media (max-width: 900px) {
    .vv-contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .vv-contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }
}

@media (max-width: 600px) {
    .vv-contact-hero {
        padding: 130px 0 40px;
    }

    .vv-contact-info {
        grid-template-columns: 1fr;
    }

    .vv-contact-form-wrap {
        padding: var(--space-5);
    }

    .vv-contact-card {
        padding: var(--space-3) var(--space-4);
    }
}

/* ============================================================
   BLOG ARCHIVE — Card Grid
   ============================================================ */
.vv-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.vv-blog-grid--related {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.vv-blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.vv-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.vv-blog-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.vv-blog-card__thumb img,
.vv-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.5s ease;
}

.vv-blog-card:hover .vv-blog-card__thumb img,
.vv-blog-card:hover .vv-blog-card__img {
    transform: scale(1.05);
    filter: grayscale(0);
}

.vv-blog-card__body {
    padding: var(--space-5) var(--space-5) var(--space-4);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vv-blog-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-xs, 0.75rem);
}

.vv-blog-card__cat {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: #fff;
    padding: 2px 10px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.vv-blog-card__date {
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
}

.vv-blog-card__title {
    font-family: var(--ff-heading, 'Outfit', sans-serif);
    font-size: var(--text-lg, 1.125rem);
    font-weight: 600;
    color: var(--text-primary, #fff);
    line-height: 1.35;
    margin: 0 0 var(--space-2);
}

.vv-blog-card__excerpt {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-size: var(--text-sm, 0.875rem);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.vv-blog-card__read {
    display: inline-block;
    color: #8b5cf6;
    font-size: var(--text-sm, 0.875rem);
    font-weight: 600;
    margin-top: var(--space-3);
    transition: color 0.2s ease;
}

.vv-blog-card:hover .vv-blog-card__read {
    color: #a78bfa;
}

/* Pagination */
.vv-blog-pagination {
    margin-top: var(--space-8);
    text-align: center;
}

.vv-blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.vv-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 var(--space-3);
    border-radius: var(--radius-md, 8px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.vv-blog-pagination .page-numbers:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
}

.vv-blog-pagination .page-numbers.current {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
}

/* ============================================================
   SINGLE POST — Hero + Content
   ============================================================ */
.vv-post-hero {
    padding-bottom: var(--space-4);
}

.vv-post-hero__image {
    max-width: 900px;
    margin: var(--space-6) auto 0;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.vv-post-hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.vv-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    margin-top: var(--space-4);
    flex-wrap: wrap;
}

.vv-post-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.6));
    font-size: var(--text-sm, 0.875rem);
}

.vv-post-meta__item svg {
    opacity: 0.5;
}

/* Breadcrumb */
.vv-breadcrumb {
    margin-bottom: var(--space-5);
}

.vv-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-sm, 0.875rem);
}

.vv-breadcrumb li {
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
}

.vv-breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: var(--space-2);
    color: var(--text-tertiary, rgba(255, 255, 255, 0.3));
}

.vv-breadcrumb a {
    color: var(--text-secondary, rgba(255, 255, 255, 0.6));
    text-decoration: none;
    transition: color 0.2s ease;
}

.vv-breadcrumb a:hover {
    color: #8b5cf6;
}

/* Post Content — Glass Article */
.vv-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-9, 3.5rem);
    font-size: var(--text-md, 1rem);
    line-height: 1.8;
    color: var(--text-secondary, rgba(255, 255, 255, 0.85));
}

.vv-post-content h1,
.vv-post-content h2,
.vv-post-content h3,
.vv-post-content h4,
.vv-post-content h5 {
    font-family: var(--ff-heading, 'Outfit', sans-serif);
    color: var(--text-primary, #fff);
    margin-top: var(--space-7);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.vv-post-content h2 {
    font-size: var(--text-xl, 1.5rem);
}

.vv-post-content h3 {
    font-size: var(--text-lg, 1.125rem);
}

.vv-post-content p {
    margin-bottom: var(--space-4);
}

.vv-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg, 12px);
    margin: var(--space-5) 0;
}

.vv-post-content a {
    color: #8b5cf6;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.vv-post-content a:hover {
    color: #a78bfa;
}

.vv-post-content blockquote {
    border-left: 3px solid #8b5cf6;
    padding: var(--space-4) var(--space-5);
    margin: var(--space-5) 0;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
    font-style: italic;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
}

.vv-post-content ul,
.vv-post-content ol {
    padding-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.vv-post-content li {
    margin-bottom: var(--space-2);
}

.vv-post-content code {
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #a78bfa;
}

.vv-post-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: var(--space-5);
    border-radius: var(--radius-md, 8px);
    overflow-x: auto;
    margin: var(--space-5) 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vv-post-content pre code {
    background: none;
    padding: 0;
    color: var(--text-secondary, rgba(255, 255, 255, 0.8));
}

/* Responsive blog */
@media (max-width: 768px) {
    .vv-blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .vv-post-content {
        padding: var(--space-5) var(--space-4);
    }

    .vv-post-meta {
        flex-direction: column;
        gap: var(--space-2);
    }

    .vv-post-hero__image {
        margin-left: calc(-1 * var(--space-4));
        margin-right: calc(-1 * var(--space-4));
        border-radius: 0;
    }

    /* Quien Soy — Mission grid stacks on mobile */
    .vv-mission [style*="grid-template-columns: 200px"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .vv-mission [style*="grid-template-columns: 200px"]>div:first-child {
        max-width: 180px;
        margin: 0 auto;
    }

    .vv-about-hero-img {
        max-width: 200px !important;
    }
}

/* ============================================================
   COSMIC IMMERSION SYSTEM v1.0
   Galaxy continuity effects across all sections
   ============================================================ */

/* --- LAYER 1: Fixed Star Field Background --- */
.vv-cosmic-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.vv-cosmic-stars__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    animation: vv-star-drift 90s linear infinite;
}

.vv-cosmic-stars__layer--1 {
    box-shadow:
        70px 80px 0 0.5px rgba(255, 255, 255, 0.4),
        180px 150px 0 0.5px rgba(255, 255, 255, 0.3),
        350px 50px 0 1px rgba(255, 255, 255, 0.5),
        520px 200px 0 0.5px rgba(255, 255, 255, 0.25),
        680px 120px 0 0.5px rgba(255, 255, 255, 0.35),
        60px 320px 0 1px rgba(255, 255, 255, 0.4),
        220px 430px 0 0.5px rgba(255, 255, 255, 0.3),
        410px 380px 0 0.5px rgba(56, 161, 219, 0.5),
        590px 310px 0 1px rgba(255, 255, 255, 0.45),
        770px 440px 0 0.5px rgba(255, 255, 255, 0.3),
        120px 560px 0 0.5px rgba(255, 255, 255, 0.35),
        300px 650px 0 1px rgba(236, 116, 252, 0.4),
        490px 580px 0 0.5px rgba(255, 255, 255, 0.3),
        660px 690px 0 0.5px rgba(255, 255, 255, 0.4),
        830px 600px 0 1px rgba(255, 255, 255, 0.35),
        80px 780px 0 0.5px rgba(255, 255, 255, 0.25),
        250px 860px 0 0.5px rgba(56, 161, 219, 0.45),
        440px 810px 0 1px rgba(255, 255, 255, 0.4),
        610px 880px 0 0.5px rgba(255, 255, 255, 0.3),
        790px 790px 0 0.5px rgba(255, 255, 255, 0.35),
        150px 950px 0 1px rgba(255, 255, 255, 0.4),
        340px 1020px 0 0.5px rgba(255, 255, 255, 0.3),
        530px 970px 0 0.5px rgba(236, 116, 252, 0.35),
        710px 1050px 0 1px rgba(255, 255, 255, 0.4),
        890px 960px 0 0.5px rgba(255, 255, 255, 0.25),
        190px 1120px 0 0.5px rgba(255, 255, 255, 0.35),
        380px 1200px 0 1px rgba(255, 255, 255, 0.3),
        560px 1140px 0 0.5px rgba(56, 161, 219, 0.4),
        740px 1230px 0 0.5px rgba(255, 255, 255, 0.4),
        920px 1160px 0 1px rgba(255, 255, 255, 0.35);
    animation-duration: 100s;
}

.vv-cosmic-stars__layer--2 {
    box-shadow:
        130px 40px 0 1px rgba(255, 255, 255, 0.5),
        290px 110px 0 0.5px rgba(255, 255, 255, 0.35),
        460px 170px 0 0.5px rgba(236, 116, 252, 0.4),
        640px 60px 0 1px rgba(255, 255, 255, 0.45),
        810px 180px 0 0.5px rgba(255, 255, 255, 0.3),
        100px 280px 0 1.5px rgba(56, 161, 219, 0.6),
        270px 350px 0 0.5px rgba(255, 255, 255, 0.35),
        450px 290px 0 0.5px rgba(255, 255, 255, 0.3),
        630px 370px 0 1px rgba(255, 255, 255, 0.4),
        800px 310px 0 0.5px rgba(255, 255, 255, 0.35),
        160px 460px 0 0.5px rgba(255, 255, 255, 0.4),
        330px 530px 0 1px rgba(255, 255, 255, 0.3),
        510px 480px 0 0.5px rgba(236, 116, 252, 0.35),
        690px 550px 0 0.5px rgba(255, 255, 255, 0.4),
        860px 490px 0 1.5px rgba(255, 255, 255, 0.5),
        200px 640px 0 0.5px rgba(255, 255, 255, 0.3),
        370px 720px 0 0.5px rgba(56, 161, 219, 0.4),
        550px 670px 0 1px rgba(255, 255, 255, 0.45),
        730px 750px 0 0.5px rgba(255, 255, 255, 0.3),
        900px 690px 0 0.5px rgba(255, 255, 255, 0.35),
        240px 830px 0 1px rgba(255, 255, 255, 0.4),
        420px 910px 0 0.5px rgba(255, 255, 255, 0.3),
        600px 860px 0 0.5px rgba(236, 116, 252, 0.4),
        780px 940px 0 1px rgba(255, 255, 255, 0.5),
        950px 870px 0 0.5px rgba(255, 255, 255, 0.35),
        280px 1030px 0 0.5px rgba(255, 255, 255, 0.3),
        470px 1100px 0 1px rgba(56, 161, 219, 0.45),
        650px 1060px 0 0.5px rgba(255, 255, 255, 0.4),
        830px 1130px 0 0.5px rgba(255, 255, 255, 0.35),
        1000px 1070px 0 1px rgba(255, 255, 255, 0.3);
    animation-duration: 140s;
    animation-delay: -35s;
}

@keyframes vv-star-drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* --- LAYER 2: Nebula Glow Separators --- */
.vv-nebula-separator {
    position: relative;
    height: 2px;
    margin: 0;
    border: none;
    overflow: visible;
}

.vv-nebula-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: vv-nebula-pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.vv-nebula-separator--blue::before {
    background: radial-gradient(ellipse, var(--vv-blue), transparent 70%);
}

.vv-nebula-separator--pink::before {
    background: radial-gradient(ellipse, var(--vv-pink), transparent 70%);
    animation-delay: -3s;
}

.vv-nebula-separator--mixed::before {
    background: radial-gradient(ellipse at 40% 50%, var(--vv-blue), transparent 60%),
        radial-gradient(ellipse at 65% 50%, var(--vv-pink), transparent 60%);
    width: 700px;
}

@keyframes vv-nebula-pulse {

    0%,
    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* --- LAYER 3: Orbital Ring Decorations --- */
.vv-orbit-container {
    position: relative;
    overflow: visible;
}

.vv-orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.vv-orbit-ring--1 {
    width: 800px;
    height: 300px;
    top: -80px;
    left: 50%;
    transform: translateX(-50%) rotateX(72deg);
    animation: vv-orbit-spin 45s linear infinite;
    border-color: rgba(56, 161, 219, 0.08);
}

.vv-orbit-ring--2 {
    width: 1000px;
    height: 350px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%) rotateX(72deg);
    animation: vv-orbit-spin 60s linear infinite reverse;
    border-color: rgba(236, 116, 252, 0.06);
}

.vv-orbit-ring--3 {
    width: 600px;
    height: 220px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotateX(72deg);
    animation: vv-orbit-spin 35s linear infinite;
    border-color: rgba(255, 225, 0, 0.06);
}

@keyframes vv-orbit-spin {
    from {
        transform: translateX(-50%) rotateX(72deg) rotateZ(0deg);
    }

    to {
        transform: translateX(-50%) rotateX(72deg) rotateZ(360deg);
    }
}

/* --- Floating Cosmic Dust Particles (CSS only) --- */
.vv-cosmic-dust {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    animation: vv-dust-float 15s ease-in-out infinite;
}

.vv-cosmic-dust--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(56, 161, 219, 0.5);
}

.vv-cosmic-dust--2 {
    top: 60%;
    left: 85%;
    animation-delay: -3s;
    background: rgba(236, 116, 252, 0.4);
}

.vv-cosmic-dust--3 {
    top: 40%;
    left: 55%;
    animation-delay: -7s;
    width: 2px;
    height: 2px;
}

.vv-cosmic-dust--4 {
    top: 80%;
    left: 30%;
    animation-delay: -11s;
    background: rgba(56, 161, 219, 0.35);
}

.vv-cosmic-dust--5 {
    top: 15%;
    left: 70%;
    animation-delay: -5s;
    width: 2px;
    height: 2px;
    background: rgba(236, 116, 252, 0.35);
}

@keyframes vv-dust-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(15px, -20px) scale(1.2);
        opacity: 0.7;
    }

    50% {
        transform: translate(-10px, -30px) scale(0.8);
        opacity: 0.3;
    }

    75% {
        transform: translate(-20px, -10px) scale(1.1);
        opacity: 0.6;
    }
}

/* Ensure sections sit above star field */
.vv-section {
    position: relative;
    z-index: 1;
}

/* --- SECTION COSMIC GLOWS --- */
/* Subtle radial glow behind specific sections */
.vv-section--cosmic-glow {
    overflow: visible;
}

.vv-section--cosmic-glow::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.vv-section--glow-blue::after {
    background: var(--vv-blue);
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}

.vv-section--glow-pink::after {
    background: var(--vv-pink);
    top: 30%;
    left: -100px;
}

.vv-section--glow-mixed::after {
    background: linear-gradient(135deg, var(--vv-blue) 0%, var(--vv-pink) 100%);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
}


/* ============================================================
   PROJECT BROWSER-WINDOW CARDS — Scroll-on-Hover Previews
   ============================================================ */
.vv-projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.vv-project-card {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    -webkit-transition: transform var(--duration-base) var(--ease-antigravity),
        border-color var(--duration-base) var(--ease-smooth),
        box-shadow var(--duration-base) var(--ease-smooth);
    transition: transform var(--duration-base) var(--ease-antigravity),
        border-color var(--duration-base) var(--ease-smooth),
        box-shadow var(--duration-base) var(--ease-smooth);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.vv-project-card:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(56, 161, 219, 0.08);
}

/* Browser Window Chrome */
.vv-project-card__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(20, 20, 26, 0.9);
    border-bottom: 1px solid var(--border-subtle);
}

.vv-project-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.vv-project-card__dot--red {
    background: #ff5f57;
}

.vv-project-card__dot--yellow {
    background: #ffbd2e;
}

.vv-project-card__dot--green {
    background: #28c840;
}

.vv-project-card__url {
    margin-left: 10px;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    font-family: 'Space Grotesk', monospace;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 10px;
    border-radius: 4px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Screenshot Viewport — THE SCROLL EFFECT */
.vv-project-card__viewport {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vv-project-card__screenshot {
    width: 100%;
    display: block;
    -webkit-transition: -webkit-transform 3s ease-in-out, -webkit-filter 0.6s ease;
    transition: transform 3s ease-in-out, filter 0.6s ease;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    will-change: transform, filter;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.vv-project-card:hover .vv-project-card__screenshot {
    -webkit-transform: translateY(calc(-100% + 220px));
    transform: translateY(calc(-100% + 220px));
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/* Project Info Bar */
.vv-project-card__info {
    padding: 16px 18px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.vv-project-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.vv-project-card__desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Projects Grid — Responsive */
@media (max-width: 1024px) {
    .vv-projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vv-projects__grid {
        grid-template-columns: 1fr;
    }

    .vv-project-card__viewport {
        height: 180px;
    }

    .vv-project-card:hover .vv-project-card__screenshot {
        -webkit-transform: translateY(calc(-100% + 180px));
        transform: translateY(calc(-100% + 180px));
    }
}

/* ============================================================
   FEATURED PROJECT — Full-Width Showcase (VariaTalleres)
   ============================================================ */
.vv-featured-project {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-7, 2.5rem);
    transition: transform var(--duration-base, 0.4s) cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    backface-visibility: hidden;
    position: relative;
}

.vv-featured-project::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(56, 161, 219, 0.25), rgba(236, 116, 252, 0.15), rgba(255, 225, 0, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vv-featured-project:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 161, 219, 0.3);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(56, 161, 219, 0.08);
}

.vv-featured-project:hover::before {
    opacity: 1;
}

.vv-featured-project__body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: 260px;
}

.vv-featured-project__viewport {
    height: 100% !important;
    min-height: 260px;
    border-right: 1px solid var(--border-subtle);
}

.vv-featured-project:hover .vv-project-card__screenshot {
    transform: translateY(calc(-100% + 260px));
    filter: grayscale(0);
}

.vv-featured-project__workshops {
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 18, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vv-featured-project__workshops-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    text-transform: uppercase;
}

.vv-featured-project__workshops-header svg {
    color: var(--vv-blue, #38A1DB);
    flex-shrink: 0;
}

.vv-featured-project__workshops-list {
    flex: 1;
    overflow-y: auto;
    padding: 6px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.vv-workshop-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 18px;
    transition: background 0.25s ease;
    border-left: 2px solid transparent;
}

.vv-workshop-item:hover {
    background: rgba(56, 161, 219, 0.06);
    border-left-color: var(--vv-blue, #38A1DB);
}

.vv-workshop-item__title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary, #fff);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vv-workshop-item__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vv-workshop-item__meta span {
    font-size: 0.65rem;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.vv-featured-project__workshops-cta {
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vv-blue, #38A1DB);
    letter-spacing: 0.3px;
    transition: color 0.2s, background 0.2s;
}

.vv-featured-project:hover .vv-featured-project__workshops-cta {
    background: rgba(56, 161, 219, 0.08);
    color: #fff;
}

@media (max-width: 768px) {
    .vv-featured-project__body {
        grid-template-columns: 1fr;
    }

    .vv-featured-project__viewport {
        min-height: 200px !important;
        height: 200px !important;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .vv-featured-project:hover .vv-project-card__screenshot {
        transform: translateY(calc(-100% + 200px));
    }

    .vv-featured-project__workshops-list {
        max-height: 200px;
    }
}

/* ── TRABAJOS A CLIENTES — Portfolio Grid ── */
.vv-trabajos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-6);
}

.vv-trabajo-card {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    position: relative;
}

.vv-trabajo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2), 0 0 40px rgba(6, 182, 212, 0.1);
}

.vv-trabajo-card__thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vv-trabajo-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

.vv-trabajo-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-trabajo-card:hover .vv-trabajo-card__thumb img {
    transform: scale(1.08);
}

.vv-trabajo-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.05);
}

.vv-trabajo-card__info {
    padding: var(--space-4);
}

.vv-trabajo-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-primary);
    line-height: 1.3;
}

.vv-trabajo-card__url {
    font-size: 0.75rem;
    color: var(--accent-secondary);
    font-family: var(--ff-mono);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .vv-trabajos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vv-trabajos__grid {
        grid-template-columns: 1fr;
    }

    .vv-trabajo-card__thumb {
        height: 160px;
    }
}

/* ── PAGINATION — Archive Pages ── */
.vv-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.vv-pagination li {
    display: inline-block;
}

.vv-pagination a,
.vv-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.vv-pagination a:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

.vv-pagination .current {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(6, 182, 212, 0.2));
    border-color: rgba(139, 92, 246, 0.5);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
}

.vv-pagination .prev,
.vv-pagination .next {
    font-weight: 600;
    color: var(--accent-primary);
}

/* --- Cosmic Stars: Mobile Performance --- */
@media (max-width: 768px) {
    .vv-cosmic-stars__layer--2 {
        display: none;
        /* Remove second layer on mobile */
    }

    .vv-orbit-ring {
        display: none;
        /* Remove orbital rings on mobile */
    }

    .vv-nebula-separator::before {
        width: 300px;
        height: 120px;
    }
}

/* ============================================================
   Why Section — 4-Column Counter-Criticism Grid
   ============================================================ */
.vv-why__grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.vv-why__grid--4 .vv-why__number svg {
    opacity: 0.9;
    filter: drop-shadow(0 0 8px currentColor);
}

@media (max-width: 1024px) {
    .vv-why__grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vv-why__grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FAQ Section — AEO Optimized Accordion
   ============================================================ */
.vv-faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 124, 209, 0.15);
}

.vv-faq-item:hover {
    border-color: rgba(138, 124, 209, 0.35);
    box-shadow: 0 4px 24px rgba(138, 124, 209, 0.1);
}

.vv-faq-item[open] {
    border-color: rgba(138, 124, 209, 0.4);
    box-shadow: 0 8px 32px rgba(138, 124, 209, 0.15);
}

.vv-faq-question {
    cursor: pointer;
    padding: var(--space-5) var(--space-6);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 600;
    color: var(--text-primary, #e5e7eb);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    user-select: none;
    transition: color 0.25s ease;
}

.vv-faq-question::-webkit-details-marker {
    display: none;
}

.vv-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(138, 124, 209, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(138, 124, 209, 0.08);
}

.vv-faq-item[open] .vv-faq-question::after {
    content: '−';
    transform: rotate(180deg);
    color: rgba(138, 124, 209, 1);
    background: rgba(138, 124, 209, 0.15);
}

.vv-faq-question:hover {
    color: #fff;
}

.vv-faq-question:hover::after {
    color: rgba(138, 124, 209, 1);
    background: rgba(138, 124, 209, 0.15);
}

.vv-faq-answer {
    padding: 0 var(--space-6) var(--space-5);
    animation: faqFadeIn 0.3s ease;
}

.vv-faq-answer p {
    color: var(--text-secondary, #9ca3af);
    line-height: 1.75;
    font-size: 0.95rem;
    margin: 0;
}

.vv-faq-answer a {
    color: rgba(138, 124, 209, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.vv-faq-answer a:hover {
    color: #fff;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}