/*!
 * Velki — Quiet Premium design system (v2)
 * Single stylesheet. Replaces velki-home.css, rebrand.css, theme.css,
 * responsive.css, velki-hero.css.
 *
 * Tokens: deep ink + single gold accent. 2 fonts. 1 shadow. 2 radii.
 */

/* =========================================================================
   1. RESET & TOKENS
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

:root {
    /* Surfaces */
    --bg:        #0B0D12;
    --bg-2:      #0F1219;
    --surface:   #14171F;
    --surface-2: #1B1F2A;
    --line:      rgba(245, 242, 234, 0.08);
    --line-2:    rgba(245, 242, 234, 0.14);

    /* Text */
    --text:     #F5F2EA;
    --text-mid: #9AA0AB;
    --text-dim: #5C6472;

    /* Single accent */
    --accent:    #E8B14A;
    --accent-2:  #F4C879;
    --accent-3:  #C7902F;
    --accent-warm: #D89A4D;
    --accent-soft: rgba(238, 184, 92, 0.14);
    --accent-glow: rgba(232, 177, 74, 0.22);
    --on-accent: #1A1407;

    /* Status */
    --success: #34D399;
    --danger:  #F87171;

    /* Type */
    --font-bn: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, -apple-system, sans-serif;
    --font-en: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    /* Motion — single language across the site */
    --ease: cubic-bezier(.16, 1, .3, 1);
    --ease-soft: cubic-bezier(.4, 0, .2, 1);
    --dur:   240ms;
    --dur-2: 400ms;
    --dur-3: 800ms;

    /* Spacing */
    --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
    --s-5: 40px; --s-6: 64px; --s-7: 96px;

    /* Radii */
    --r:    12px;
    --r-lg: 20px;
    --r-pill: 999px;

    /* Shadow */
    --sh:    0 2px 8px rgba(0, 0, 0, 0.35);
    --sh-2:  0 8px 32px rgba(0, 0, 0, 0.45);
    --sh-3:  0 16px 48px rgba(0, 0, 0, 0.55);

    /* Layout */
    --max:  1200px;
    --pad:  clamp(16px, 4vw, 40px);
}

html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
html:has(body.vk) { overflow-x: clip; }

body.vk {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-bn);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    text-rendering: optimizeLegibility;
}

body.vk img, body.vk svg { display: block; max-width: 100%; height: auto; }
body.vk a { color: inherit; text-decoration: none; }
body.vk button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
body.vk input, body.vk select, body.vk textarea { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--on-accent); }

/* ----- Tactile film grain (sub-1KB inline SVG, fixed, pointer-blocked) ----- */
body.vk::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}
@media (prefers-reduced-motion: reduce) {
    body.vk::after { display: none; }
}

/* Latin numbers / English get Inter, with tabular numerals everywhere */
body.vk .vk-en,
body.vk time,
body.vk [data-lang="en"] {
    font-family: var(--font-en);
    font-feature-settings: "tnum" 1, "ss01" 1;
    font-variant-numeric: tabular-nums;
}
/* All numeric stat displays get tabular nums even when in Bangla */
body.vk .vk-trust__num,
body.vk .vk-hero__stat-num,
body.vk .vk-trust__num small,
body.vk .vk-hero__stat-num small {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}

/* ----- Editorial serif on accented words (the .vk-h2 em / .vk-hero__title em) ----- */
body.vk .vk-hero__title em,
body.vk .vk-h2 em,
body.vk .vk-h1 em,
body.vk .vk-pagehero__title em,
body.vk .vk-cta__inner .vk-h2 em,
body.vk .vk-pagecta__inner .vk-h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.005em;
    color: var(--accent);
}
/* Slightly larger optical size for hero serif word */
body.vk .vk-hero__title em {
    font-weight: 500;
    /* Variable-font opsz (Fraunces) — bigger optical size for headline */
    font-variation-settings: "opsz" 144;
}

/* ----- Count-up animation prep: measure space so number doesn't shift ----- */
body.vk [data-count] {
    display: inline-block;
    min-width: 1ch;
    font-variant-numeric: tabular-nums;
}

/* Skip link */
.vk-skip {
    position: absolute; left: -9999px; top: 0;
    padding: 12px 20px;
    background: var(--accent); color: var(--on-accent);
    font-weight: 700; z-index: 9999;
    border-radius: 0 0 var(--r) 0;
}
.vk-skip:focus { left: 0; top: 0; }

/* Focus visible — uniform */
body.vk :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

body.vk.admin-bar { padding-top: 0 !important; }

/* =========================================================================
   2. UTILITIES
   ========================================================================= */
.vk-container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.vk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    border: 1px solid rgba(232, 177, 74, 0.22);
}

/* Editorial side-rules variant — used inside section heads. Drops the pill,
   draws a 22px gold line on each side of the label. Magazine-grade chrome. */
.vk-section__head .vk-eyebrow {
    background: none;
    border: 0;
    padding: 6px 0;
    color: var(--accent-2);
    font-weight: 700;
    letter-spacing: 0.16em;
}
.vk-section__head .vk-eyebrow::before,
.vk-section__head .vk-eyebrow::after {
    content: "";
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    flex-shrink: 0;
}

.vk-h1, h1.vk-h1 {
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: clamp(34px, 5.5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0 0 var(--s-4);
}
.vk-h2, h2.vk-h2 {
    font-family: var(--font-bn);
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--text);
    margin: 0 0 var(--s-3);
}
.vk-h2 em {
    font-style: normal;
    color: var(--accent);
}

.vk-lead {
    color: var(--text-mid);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    max-width: 60ch;
    margin: 0;
}

.vk-section {
    padding: var(--s-7) 0;
    position: relative;
}
.vk-section > .vk-container > .vk-section__head,
.vk-section > .vk-section__head {
    text-align: center;
    margin: 0 auto var(--s-6);
    max-width: 720px;
}
.vk-section__head .vk-eyebrow { margin-bottom: var(--s-3); }
.vk-section__head .vk-lead    { margin: var(--s-3) auto 0; }

@media (max-width: 720px) {
    .vk-section { padding: var(--s-6) 0; }
}

/* =========================================================================
   3. BUTTONS
   ========================================================================= */
.vk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    font-family: var(--font-bn);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    border-radius: var(--r-pill);
    border: 1px solid transparent;
    transition: transform var(--dur) var(--ease),
                background var(--dur) var(--ease),
                color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    white-space: nowrap;
    text-align: center;
    will-change: transform;
}
.vk-btn:hover { transform: translateY(-2px); }
.vk-btn:active { transform: translateY(0); transition-duration: 80ms; }

.vk-btn--primary {
    background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent) 60%, var(--accent-3) 100%);
    color: var(--on-accent);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset,
        0 4px 16px var(--accent-glow);
}
.vk-btn--primary:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.30) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset,
        0 10px 28px var(--accent-glow);
}

.vk-btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-2);
}
.vk-btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

.vk-btn--lg { padding: 16px 28px; font-size: 16px; }
.vk-btn--xl { padding: 18px 36px; font-size: 17px; }
.vk-btn--block { width: 100%; }

/* =========================================================================
   3b. PAPER-CARD SURFACE — applied to every elevated surface so all cards
   share a top-edge highlight + warm inner shadow. Tactile dark direction.
   ========================================================================= */
.vk-agent-card,
.vk-step,
.vk-why-card,
.vk-testi__card,
.vk-contact__row,
.vk-blog__card,
.vk-hero__card,
.vk-hero__stat,
.vk-faq__plus,
.vk-search__group-count,
.vk-search__empty-chip,
.vk-pagehero__assure li,
.vk-post__share-btn,
.vk-post__meta li,
.vk-mobile li a,
.vk-input,
.vk-faq__searchbox,
.vk-search-redo {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.030) 0%, rgba(255, 255, 255, 0) 28%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 1px 2px rgba(0, 0, 0, 0.30);
}

/* Hover lift unified across all cards */
.vk-agent-card,
.vk-blog__card,
.vk-contact__row,
.vk-testi__card,
.vk-step,
.vk-why-card,
.vk-hero__card,
.vk-pagecta__inner,
.vk-cta__inner,
.vk-footer__social a {
    transition: transform var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}
.vk-agent-card:hover,
.vk-blog__card:hover,
.vk-contact__row:hover,
.vk-testi__card:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 177, 74, 0.30);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 14px 36px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(232, 177, 74, 0.10) inset;
}

/* Larger CTA blocks get the same paper treatment but with a soft warm glow on top */
.vk-cta__inner,
.vk-pagecta__inner {
    background:
        radial-gradient(70% 80% at 50% 0%, var(--accent-soft), transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
        linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 8px 32px rgba(0, 0, 0, 0.45);
}

/* Header blur-bar gains a tiny top-edge sheen too */
.vk-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

/* Section-heading eyebrow — slightly warmer paper background */
.vk-eyebrow {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        var(--accent-soft);
}

/* =========================================================================
   4. HEADER
   ========================================================================= */
.vk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.vk-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px var(--pad);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--s-4);
}

.vk-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.vk-brand__mark {
    height: 30px;
    width: auto;
    display: block;
}
.vk-brand__sep {
    width: 1px;
    height: 18px;
    background: var(--line-2);
}
.vk-brand__tag {
    font-family: var(--font-bn);
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
}

.vk-nav {
    justify-self: center;
}
.vk-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.vk-nav__list a {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: 8px;
    transition: color .15s ease, background .15s ease;
}
.vk-nav__list a:hover {
    color: var(--text);
    background: var(--surface);
}
.vk-nav__list a.is-current {
    color: var(--accent);
}

.vk-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
}
.vk-header__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1px solid var(--line);
    font-size: 12.5px;
    color: var(--text-mid);
}
.vk-header__live strong {
    color: var(--text);
    font-family: var(--font-en);
    font-weight: 700;
}
.vk-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
    animation: vk-pulse 2s infinite;
}
@keyframes vk-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.vk-burger {
    display: none;
    width: 40px; height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line-2);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.vk-burger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.vk-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.vk-burger.is-open span:nth-child(2) { opacity: 0; }
.vk-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
    .vk-nav { display: none; }
    .vk-burger { display: inline-flex; }
    .vk-header__live { display: none; }
}

.vk-mobile {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99;
    display: none;
    overflow-y: auto;
}
.vk-mobile.is-open { display: block; }
.vk-mobile__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 80px var(--pad) var(--s-5);
}
.vk-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vk-mobile li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-radius: var(--r);
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid var(--line);
}
.vk-mobile li a:hover { border-color: var(--accent); color: var(--accent); }
.vk-mobile__cta { margin-top: var(--s-3); }
.vk-mobile__foot {
    margin-top: var(--s-5);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-dim);
    font-size: 13px;
    text-align: center;
}

/* =========================================================================
   5. HERO
   ========================================================================= */
.vk-hero {
    position: relative;
    padding: var(--s-7) 0 var(--s-7);
    overflow: hidden;
    isolation: isolate;
}
.vk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60% 50% at 20% 0%, rgba(232, 177, 74, 0.10), transparent 70%),
        radial-gradient(50% 40% at 100% 0%, rgba(232, 177, 74, 0.04), transparent 70%);
}
/* Engineered grid layer — masked by radial so it fades at the edges */
.vk-hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 177, 74, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 177, 74, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 75%);
            mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 75%);
    opacity: 0.7;
    pointer-events: none;
}
/* Network constellation — placed inside .vk-hero__bg as inline SVG */
.vk-hero__constellation {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--accent);
    opacity: 0.22;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 10%, #000 35%, transparent 88%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 10%, #000 35%, transparent 88%);
}
.vk-hero__constellation circle { transition: r var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.vk-hero__constellation .vk-c-line { stroke: currentColor; stroke-width: 0.4; opacity: 0.55; }
.vk-hero__constellation .vk-c-dot  { fill: currentColor; }
.vk-hero__constellation .vk-c-dot--lg { fill: var(--accent-2); filter: drop-shadow(0 0 6px rgba(244, 200, 121, 0.7)); }

/* Live status chip above headline */
.vk-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 8px;
    border-radius: var(--r-pill);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
        rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(232, 177, 74, 0.28);
    color: var(--text);
    font-size: 12.5px;
    margin-bottom: 18px;
    text-decoration: none;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.vk-hero__chip:hover {
    border-color: var(--accent);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        var(--accent-soft);
}
.vk-hero__chip-dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #D32030;
    box-shadow: 0 0 12px rgba(211, 32, 48, 0.7);
    animation: vk-chip-pulse 1.8s cubic-bezier(.4, 0, .6, 1) infinite;
    flex-shrink: 0;
}
@keyframes vk-chip-pulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.8); }
}
.vk-hero__chip b {
    color: var(--accent-2);
    font-family: var(--font-en);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
}
.vk-hero__chip strong {
    color: var(--accent);
    font-family: var(--font-en);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
@media (prefers-reduced-motion: reduce) {
    .vk-hero__chip-dot { animation: none; }
}

/* Bilingual hero subtitle — small Inter italic English caption under the
   Bangla h1. FT/Monocle bicultural editorial pattern. */
.vk-hero__subtitle {
    display: block;
    font-family: var(--font-en);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(13px, 1vw, 15px);
    letter-spacing: 0.02em;
    color: var(--text-mid);
    margin-top: 18px;
    line-height: 1.5;
}

/* Underline glow under the serif em in the headline — pairs with Fraunces */
.vk-hero__title em {
    position: relative;
    display: inline-block;
}
.vk-hero__title em::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        var(--accent) 18%,
        var(--accent-2) 50%,
        var(--accent) 82%,
        transparent);
    border-radius: 6px;
    opacity: 0.6;
    filter: blur(1.5px);
    pointer-events: none;
}
.vk-hero__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--s-6);
    align-items: center;
}
@media (max-width: 960px) {
    .vk-hero__inner { grid-template-columns: 1fr; gap: var(--s-5); }
}

.vk-hero__eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--text-mid);
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 var(--s-3);
}
.vk-hero__eyebrow > span:not([aria-hidden]) { color: var(--accent); }

.vk-hero__title {
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 700;
    margin: 0 0 var(--s-4);
    color: var(--text);
}
.vk-hero__title em {
    font-style: normal;
    color: var(--accent);
}

.vk-hero__lead {
    color: var(--text-mid);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
    margin: 0 0 var(--s-5);
    max-width: 56ch;
}
.vk-hero__lead strong {
    color: var(--text);
    font-family: var(--font-en);
    font-weight: 700;
}

.vk-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    align-items: center;
}

/* Hero side card — real stats */
.vk-hero__card {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: var(--s-4);
    box-shadow: var(--sh-2);
}
.vk-hero__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--s-3);
    margin-bottom: var(--s-3);
    border-bottom: 1px solid var(--line);
}
.vk-hero__card-title {
    font-size: 14px;
    color: var(--text-mid);
    margin: 0;
    font-weight: 500;
}
.vk-hero__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
}
.vk-hero__stat {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: var(--s-3);
}
.vk-hero__stat-num {
    display: block;
    font-family: var(--font-bn);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 4px;
}
.vk-hero__stat-num small {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 500;
    margin-left: 2px;
}
.vk-hero__stat-lbl {
    font-size: 12.5px;
    color: var(--text-mid);
}

/* =========================================================================
   6. AGENT CATEGORIES
   ========================================================================= */
.vk-agents__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-4);
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.vk-agent-card {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    padding: var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    color: var(--text);
}
.vk-agent-card:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 177, 74, 0.35);
    box-shadow: var(--sh-2);
}
.vk-agent-card__badge {
    align-self: flex-start;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-weight: 600;
}
.vk-agent-card__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.vk-agent-card__sub {
    font-family: var(--font-en);
    font-size: 12.5px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    margin: -8px 0 0;
}
.vk-agent-card__desc {
    color: var(--text-mid);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}
.vk-agent-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--s-2);
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
}
.vk-agent-card__count {
    font-size: 13px;
    color: var(--text-mid);
}
.vk-agent-card__count strong {
    color: var(--text);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 15px;
}
.vk-agent-card__arrow {
    font-size: 20px;
    color: var(--accent);
}

/* =========================================================================
   7. HOW IT WORKS
   ========================================================================= */
.vk-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s-4);
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    list-style: none;
}
.vk-step {
    padding: var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    position: relative;
}
.vk-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    color: var(--accent);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: var(--s-3);
}
.vk-step__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text);
}
.vk-step__desc {
    margin: 0;
    color: var(--text-mid);
    font-size: 14.5px;
    line-height: 1.65;
}

/* =========================================================================
   8. WHY (3 reasons)
   ========================================================================= */
.vk-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-4);
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.vk-why-card {
    padding: var(--s-5) var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    text-align: left;
}
.vk-why-card__ic {
    width: 44px; height: 44px;
    border-radius: var(--r);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--s-3);
}
.vk-why-card__title {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 var(--s-2);
    color: var(--text);
}
.vk-why-card__desc {
    margin: 0;
    color: var(--text-mid);
    font-size: 14.5px;
    line-height: 1.7;
}

/* =========================================================================
   9. TRUST STRIP
   ========================================================================= */
.vk-trust {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: var(--s-5) 0;
}
.vk-trust__grid {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--s-4);
    text-align: center;
}
.vk-trust__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vk-trust__num {
    font-family: var(--font-bn);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}
.vk-trust__num small {
    font-size: 0.5em;
    color: var(--text-mid);
    margin-left: 2px;
}
.vk-trust__lbl {
    font-size: 13px;
    color: var(--text-mid);
}

/* =========================================================================
   10. FAQ
   ========================================================================= */
.vk-faq {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--pad);
}
.vk-faq__item {
    border-top: 1px solid var(--line);
    padding: 0;
}
.vk-faq__item:last-child { border-bottom: 1px solid var(--line); }
.vk-faq__summary {
    list-style: none;
    cursor: pointer;
    padding: var(--s-3) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-3);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    transition: color .15s ease;
}
.vk-faq__summary::-webkit-details-marker { display: none; }
.vk-faq__summary:hover { color: var(--accent); }
.vk-faq__plus {
    width: 28px; height: 28px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1px solid var(--line-2);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .25s ease;
}
.vk-faq__item[open] .vk-faq__plus { transform: rotate(45deg); }
.vk-faq__a {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.75;
    padding: 0 0 var(--s-3);
    max-width: 70ch;
}

/* =========================================================================
   11. CONTACT
   ========================================================================= */
.vk-contact {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--pad);
}
.vk-contact__rows {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.vk-contact__row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-3) var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    color: var(--text);
    transition: transform .2s ease, border-color .2s ease;
}
.vk-contact__row:hover {
    transform: translateY(-1px);
    border-color: rgba(232, 177, 74, 0.35);
}
.vk-contact__ic {
    width: 44px; height: 44px;
    border-radius: var(--r);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vk-contact__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.vk-contact__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}
.vk-contact__detail {
    font-size: 13.5px;
    color: var(--text-mid);
    font-family: var(--font-en);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vk-contact__arrow {
    color: var(--accent);
    font-size: 18px;
}

/* =========================================================================
   12. FINAL CTA
   ========================================================================= */
.vk-cta {
    margin: var(--s-7) auto 0;
    max-width: var(--max);
    padding: 0 var(--pad);
}
.vk-cta__inner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.vk-cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(60% 80% at 50% 0%, rgba(232, 177, 74, 0.10), transparent 70%);
}
.vk-cta__inner .vk-h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: var(--s-3);
}
.vk-cta__inner .vk-lead {
    margin: 0 auto var(--s-5);
    text-align: center;
}
.vk-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    justify-content: center;
}

/* =========================================================================
   13. FOOTER
   ========================================================================= */
.vk-footer {
    margin-top: var(--s-7);
    background: #06070C;
    border-top: 1px solid var(--line);
    color: var(--text-mid);
}
.vk-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: var(--s-6) var(--pad) var(--s-4);
}
.vk-footer__top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: var(--s-5);
    padding-bottom: var(--s-5);
    border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
    .vk-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-4);
    }
    .vk-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .vk-footer__top { grid-template-columns: 1fr; }
}

.vk-footer__brand .vk-brand__mark { height: 32px; margin-bottom: var(--s-3); }
.vk-footer__lede {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.7;
    max-width: 36ch;
    margin: 0 0 var(--s-3);
}
.vk-footer__social {
    display: flex;
    gap: 10px;
}
.vk-footer__social a {
    width: 36px; height: 36px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    color: var(--text-mid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .15s ease, border-color .15s ease;
}
.vk-footer__social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.vk-footer__col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin: 0 0 var(--s-3);
    font-weight: 600;
}
.vk-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vk-footer__col a {
    color: var(--text-mid);
    font-size: 14px;
    transition: color .15s ease;
}
.vk-footer__col a:hover { color: var(--accent); }

.vk-footer__bot {
    padding-top: var(--s-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s-2);
    font-size: 12.5px;
    color: var(--text-dim);
}
.vk-footer__bot p { margin: 0; }
.vk-footer__age {
    color: var(--accent);
    font-weight: 600;
}

/* =========================================================================
   14. BACK-TO-TOP BUTTON
   ========================================================================= */
.vk-totop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    width: 44px; height: 44px;
    border-radius: var(--r-pill);
    background: var(--accent);
    color: var(--on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-2);
    transition: transform .2s ease, opacity .2s ease;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}
.vk-totop.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.vk-totop:hover { background: var(--accent-2); }

/* =========================================================================
   15. INNER PAGES — generic single/page/archive (reskin)
   ========================================================================= */
body.vk:not(.vk-home) #vk-main {
    max-width: var(--max);
    margin: 0 auto;
    padding: var(--s-6) var(--pad);
}
.vk-page-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--s-3);
    line-height: 1.15;
}
.vk-page-lead {
    color: var(--text-mid);
    font-size: 16px;
    max-width: 60ch;
    margin: 0 0 var(--s-5);
}

.vk-prose {
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
}
.vk-prose h2, .vk-prose h3 {
    color: var(--text);
    margin-top: var(--s-5);
    margin-bottom: var(--s-3);
    line-height: 1.25;
    font-weight: 700;
}
.vk-prose h2 { font-size: 24px; }
.vk-prose h3 { font-size: 20px; }
.vk-prose p, .vk-prose ul, .vk-prose ol { margin: 0 0 var(--s-3); color: var(--text); }
.vk-prose ul, .vk-prose ol { padding-left: 1.4em; }
.vk-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.vk-prose a:hover { color: var(--accent-2); }
.vk-prose strong { color: var(--text); font-weight: 700; }
.vk-prose code, .vk-prose pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0.15em 0.4em;
    font-size: 0.92em;
}
.vk-prose pre {
    padding: var(--s-3);
    overflow-x: auto;
}
.vk-prose blockquote {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px var(--s-3);
    margin: var(--s-4) 0;
    color: var(--text-mid);
    font-style: italic;
}
.vk-prose img {
    border-radius: var(--r);
    margin: var(--s-3) 0;
}

/* =========================================================================
   16. AGENT LIST (inner page) — preserves vk-* classes from template
   ========================================================================= */
.vk-agentlist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-4);
}
.vk-agentlist__card,
.vk-agent-row {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    padding: var(--s-3);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    color: var(--text);
    transition: transform .2s ease, border-color .2s ease;
}
.vk-agentlist__card:hover,
.vk-agent-row:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 177, 74, 0.35);
}
.vk-agent-row__avatar {
    width: 56px; height: 56px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.vk-agent-row__name {
    font-weight: 600;
    color: var(--text);
    font-size: 16px;
    margin: 0;
}
.vk-agent-row__meta {
    color: var(--text-mid);
    font-size: 13.5px;
    margin: 0;
}
.vk-agent-row__cta {
    margin-left: auto;
}

/* =========================================================================
   17. FORMS / SEARCH
   ========================================================================= */
.vk-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r);
    color: var(--text);
    transition: border-color .15s ease;
}
.vk-input:focus {
    outline: none;
    border-color: var(--accent);
}
.vk-input::placeholder { color: var(--text-dim); }

/* =========================================================================
   18. SINGLE POST — BLOG
   ========================================================================= */
.vk-post {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--s-6) var(--pad);
}
.vk-post__cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--r-lg);
    margin-bottom: var(--s-4);
    background: var(--surface);
}
.vk-post__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-mid);
    font-size: 13px;
    margin-bottom: var(--s-3);
}
.vk-post__meta time { font-family: var(--font-en); }
.vk-post__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin: 0 0 var(--s-4);
    letter-spacing: -0.005em;
}

/* Blog index cards */
.vk-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-4);
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.vk-blog__card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
    color: var(--text);
}
.vk-blog__card:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 177, 74, 0.35);
}
.vk-blog__cover {
    aspect-ratio: 16 / 9;
    background: var(--bg-2);
    overflow: hidden;
    position: relative;
}
.vk-blog__cover img { width: 100%; height: 100%; object-fit: cover; }
.vk-blog__cover-fallback {
    width: 100%; height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background:
        radial-gradient(60% 80% at 30% 30%, var(--accent-soft), transparent 65%),
        repeating-linear-gradient(135deg,
            rgba(232, 177, 74, 0.06) 0 1px,
            transparent 1px 14px),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
    position: relative;
    isolation: isolate;
}
.vk-blog__cover-fallback::after {
    content: '';
    position: absolute;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.12;
    filter: blur(20px);
    z-index: -1;
}
.vk-blog__cat {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(11, 13, 18, 0.85);
    color: var(--accent);
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
}
.vk-blog__body {
    padding: var(--s-4);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.vk-blog__meta {
    color: var(--text-dim);
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.vk-blog__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.35;
}
.vk-blog__excerpt {
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}
.vk-blog__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}

.vk-blog__more {
    display: flex;
    justify-content: center;
    gap: var(--s-3);
    margin-top: var(--s-5);
    flex-wrap: wrap;
}

/* =========================================================================
   19. OPTIONAL TESTIMONIALS BLOCK (only renders when ≥3 published)
   ========================================================================= */
.vk-testi {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.vk-testi__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-4);
}
.vk-testi__card {
    padding: var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.vk-testi__quote {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}
.vk-testi__quote::before {
    content: '“';
    color: var(--accent);
    font-size: 32px;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
    font-family: serif;
}
.vk-testi__who {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
}
.vk-testi__avatar {
    width: 36px; height: 36px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}
.vk-testi__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}
.vk-testi__city {
    font-size: 12.5px;
    color: var(--text-mid);
}

/* =========================================================================
   20. RESPONSIVE TWEAKS
   ========================================================================= */
@media (max-width: 720px) {
    .vk-hero__cta { flex-direction: column; align-items: stretch; }
    .vk-hero__cta .vk-btn { width: 100%; }
    .vk-cta__buttons { flex-direction: column; align-items: stretch; }
    .vk-cta__buttons .vk-btn { width: 100%; }
    .vk-hero__stats { grid-template-columns: 1fr 1fr; }
    .vk-footer__bot { justify-content: center; text-align: center; }
}

/* =========================================================================
   21. PRINT
   ========================================================================= */
@media print {
    .vk-header, .vk-footer, .vk-totop, .vk-burger { display: none; }
    body.vk { background: #fff; color: #000; }
}

/* =========================================================================
   22. INNER-PAGE HERO + LEGACY CLASS COMPAT (search/agent-list/faq/etc.)
   ========================================================================= */
.vk-pagehero {
    position: relative;
    padding: var(--s-6) 0 var(--s-5);
    overflow: hidden;
    isolation: isolate;
}
.vk-pagehero::before {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(60% 60% at 50% 0%, rgba(232, 177, 74, 0.10), transparent 70%);
}
.vk-pagehero__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
}
.vk-pagehero__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--text);
    margin: var(--s-3) 0 var(--s-3);
    line-height: 1.2;
}
.vk-pagehero__title em {
    font-style: normal;
    color: var(--accent);
}
.vk-pagehero__lead {
    color: var(--text-mid);
    margin: 0 auto var(--s-4);
    text-align: center;
}
.vk-pagehero__assure {
    list-style: none;
    margin: var(--s-3) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    font-size: 13px;
    color: var(--text-mid);
}
.vk-pagehero__assure li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--surface);
}
.vk-pagehero__assure svg { color: var(--accent); }

.vk-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-mid);
    font-size: 13px;
    margin-bottom: var(--s-3);
}
.vk-breadcrumb a:hover { color: var(--accent); }
.vk-breadcrumb svg { opacity: 0.6; }

/* Search box reused by faq + search results */
.vk-faq__searchbox,
.vk-search-redo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 6px 6px 16px;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: var(--r-pill);
    max-width: 560px;
    margin: var(--s-3) auto 0;
}
.vk-faq__searchbox svg,
.vk-search-redo svg { color: var(--text-mid); flex-shrink: 0; }
.vk-faq__searchbox input,
.vk-search-redo input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--text);
    font-size: 15px;
    padding: 8px 0;
}
.vk-faq__searchbox input::placeholder,
.vk-search-redo input::placeholder { color: var(--text-dim); }
.vk-btn.vk-btn--sm { padding: 10px 18px; font-size: 13.5px; }

/* Eyebrow with shield icon variant — already covered by .vk-eyebrow */
.vk-eyebrow--shield,
.vk-eyebrow--live { /* alias */ }

/* Search result groups */
.vk-search-results { padding-top: var(--s-5); padding-bottom: var(--s-5); }
.vk-search__group {
    max-width: var(--max);
    margin: 0 auto var(--s-5);
    padding: 0 var(--pad);
}
.vk-search__group-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: var(--s-3);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--s-3);
}
.vk-search__group-icon {
    width: 36px; height: 36px;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vk-search__group-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}
.vk-search__group-count {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-mid);
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.vk-search__empty {
    max-width: 560px;
    margin: 0 auto;
    padding: var(--s-6) var(--pad);
    text-align: center;
}
.vk-search__empty-icon {
    display: inline-flex;
    width: 64px; height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-pill);
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: var(--s-3);
}
.vk-search__empty-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 var(--s-2);
}
.vk-search__empty-text {
    color: var(--text-mid);
    margin: 0 0 var(--s-3);
}
.vk-search__empty-suggestions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.vk-search__empty-label {
    color: var(--text-dim);
    font-size: 13px;
    margin-right: 4px;
}
.vk-search__empty-chip {
    padding: 6px 12px;
    border: 1px solid var(--line-2);
    border-radius: var(--r-pill);
    color: var(--text);
    font-size: 13px;
    transition: border-color .15s ease, color .15s ease;
}
.vk-search__empty-chip:hover { border-color: var(--accent); color: var(--accent); }

/* Pagination */
.vk-blog__pagination,
.vk-search__pagination,
nav.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: var(--s-5) auto 0;
    flex-wrap: wrap;
}
.vk-blog__pagination .page-numbers,
.vk-search__pagination .page-numbers,
nav.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-mid);
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}
.vk-blog__pagination .page-numbers:hover,
.vk-search__pagination .page-numbers:hover,
nav.pagination .page-numbers:hover { color: var(--accent); border-color: var(--accent); }
.vk-blog__pagination .page-numbers.current,
.vk-search__pagination .page-numbers.current,
nav.pagination .page-numbers.current {
    background: var(--accent);
    color: var(--on-accent);
    border-color: var(--accent);
}

/* Page CTA block (used by template pages) */
.vk-pagecta {
    margin: var(--s-7) auto 0;
    max-width: var(--max);
    padding: 0 var(--pad) var(--s-7);
}
.vk-pagecta__inner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vk-pagecta__inner .vk-h2 { margin-bottom: var(--s-3); }
.vk-pagecta__inner .vk-lead { margin: 0 auto var(--s-4); }
.vk-pagecta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    justify-content: center;
}

/* Single-post extras */
.vk-post__hero { padding: var(--s-5) 0 var(--s-3); }
.vk-post__title { font-size: clamp(28px, 4vw, 44px); }
.vk-post__meta {
    list-style: none;
    margin: var(--s-3) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    color: var(--text-mid);
    font-size: 13px;
}
.vk-post__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
}
.vk-post__meta-icon { color: var(--accent); }
.vk-post__meta-lbl { color: var(--text-dim); }
.vk-post__meta-val { color: var(--text); font-family: var(--font-en); }

.vk-post__body-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--s-5) var(--pad);
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--s-4);
}
@media (max-width: 720px) {
    .vk-post__body-wrap {
        grid-template-columns: 1fr;
        gap: var(--s-3);
    }
}

.vk-post__share-rail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: sticky;
    top: 80px;
    align-self: start;
}
.vk-post__share-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.vk-post__share-btn {
    width: 38px; height: 38px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    background: var(--surface);
    color: var(--text-mid);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .15s ease, border-color .15s ease;
}
.vk-post__share-btn:hover { color: var(--accent); border-color: var(--accent); }
.vk-post__share-btn.is-copied { color: var(--success); border-color: var(--success); }
@media (max-width: 720px) {
    .vk-post__share-rail { flex-direction: row; position: static; justify-content: flex-start; }
    .vk-post__share-label { display: none; }
}

.vk-post__body { color: var(--text); line-height: 1.85; font-size: 16.5px; }
.vk-post__body h2, .vk-post__body h3, .vk-post__body h4 {
    color: var(--text);
    margin-top: var(--s-5);
    margin-bottom: var(--s-3);
    line-height: 1.25;
    font-weight: 700;
}
.vk-post__body h2 { font-size: 26px; }
.vk-post__body h3 { font-size: 22px; }
.vk-post__body h4 { font-size: 18px; }
.vk-post__body p, .vk-post__body ul, .vk-post__body ol { margin: 0 0 var(--s-3); }
.vk-post__body ul, .vk-post__body ol { padding-left: 1.4em; }
.vk-post__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.vk-post__body strong { color: var(--text); font-weight: 700; }
.vk-post__body img { border-radius: var(--r); margin: var(--s-3) 0; }
.vk-post__body blockquote {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px var(--s-4);
    margin: var(--s-4) 0;
    color: var(--text-mid);
    font-style: italic;
    font-size: 18px;
}

.vk-post__share-bar {
    margin-top: var(--s-5);
    padding-top: var(--s-4);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
}
.vk-post__share-text {
    font-size: 14px;
    color: var(--text-mid);
}
.vk-post__share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vk-post__related { padding: var(--s-6) 0 0; }
.vk-blog__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.vk-blog__link .vk-blog__cover + .vk-blog__meta {
    padding: var(--s-4) var(--s-4) 0;
}
.vk-blog__link .vk-blog__title,
.vk-blog__link .vk-blog__excerpt {
    padding: 0 var(--s-4);
}
.vk-blog__link .vk-blog__cta {
    padding: 0 var(--s-4) var(--s-4);
}

/* Legacy aliases — keep WhatsApp button working everywhere */
.vk-btn--whatsapp {
    background: var(--accent);
    color: var(--on-accent);
}
.vk-btn--whatsapp:hover { background: var(--accent-2); }
.vk-btn--glass { background: transparent; color: var(--text); border-color: var(--line-2); }
.vk-btn--glass:hover { border-color: var(--accent); color: var(--accent); }
.vk-magnetic { /* no JS magnetic in v2 — render as normal button */ }

/* Suppress decorative orbs / particles / cursor / noise / grid / marquee
   that survive in legacy templates from v1 */
.vk-orb, .vk-cursor, .vk-particles, .vk-noise, .vk-grid, .vk-hero__marquee,
.vk-hero__marquee-glow, .vk-marquee__track, .vk-marquee__item,
.vk-pagehero__bg, .vk-platforms__aura, .vk-contact__bg, .vk-cta__bg,
.vk-live__aura, .vk-tabsec__aura, .vk-livep__sep,
.vk-footer__aura {
    display: none !important;
}

/* =========================================================================
   23. WP CORE COMPATIBILITY
   ========================================================================= */
.alignleft  { float: left;  margin: 0 var(--s-3) var(--s-3) 0; }
.alignright { float: right; margin: 0 0 var(--s-3) var(--s-3); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide   { max-width: var(--max); margin-left: auto; margin-right: auto; }
.screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px; height: 1px;
    overflow: hidden;
}
