/*
Theme Name: Veloforce Digital Consulting
Theme URI: https://veloforce.example.com
Author: Veloforce Digital Consulting
Author URI: https://veloforce.example.com
Description: A premium, enterprise-grade custom WordPress theme for Veloforce Digital Consulting — a Salesforce implementation and digital transformation consultancy. Built with native WordPress functionality (no page builders), Gutenberg compatible, WCAG 2.1 AA conscious, SEO-friendly and fully responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veloforce
Tags: business, consulting, corporate, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, full-width-template, block-styles, wide-blocks
*/

/* =========================================================================
   Veloforce — Design Tokens
   ========================================================================= */
:root {
    --vf-navy-900: #060f24;
    --vf-navy-800: #0a1b3d;
    --vf-navy-700: #0e2552;
    --vf-navy-600: #14336e;
    --vf-blue: #1b5cff;
    --vf-blue-600: #1749d6;
    --vf-blue-light: #4d9fff;
    --vf-sky: #eaf2ff;
    --vf-sky-2: #f4f8ff;
    --vf-grey-50: #f6f8fb;
    --vf-grey-100: #eef1f6;
    --vf-grey-200: #e2e7ef;
    --vf-line: #e6eaf1;
    --vf-text: #14213d;
    --vf-text-soft: #3a465e;
    --vf-muted: #687387;
    --vf-white: #ffffff;
    --vf-accent: #18c0a8;

    --vf-radius: 16px;
    --vf-radius-sm: 10px;
    --vf-radius-lg: 26px;
    --vf-shadow-sm: 0 1px 2px rgba(10, 27, 61, .06), 0 2px 8px rgba(10, 27, 61, .05);
    --vf-shadow: 0 10px 30px -12px rgba(10, 27, 61, .18);
    --vf-shadow-lg: 0 30px 60px -18px rgba(10, 27, 61, .28);
    --vf-ring: 0 0 0 4px rgba(27, 92, 255, .18);

    --vf-font-head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --vf-font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --vf-container: 1200px;
    --vf-gutter: clamp(20px, 5vw, 40px);
    --vf-section: clamp(64px, 9vw, 120px);
}

/* =========================================================================
   Reset / Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
    font-size: 16px; /* Pin rem base so type renders identically across browsers regardless of each browser's default font-size setting (Edge/Chrome). Page zoom still scales everything for accessibility. */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--vf-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--vf-text-soft);
    background: var(--vf-white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--vf-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--vf-blue-600); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--vf-font-head);
    color: var(--vf-text);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
strong { color: var(--vf-text); font-weight: 700; }
blockquote {
    margin: 1.6em 0;
    padding: 1.2em 1.6em;
    border-left: 4px solid var(--vf-blue);
    background: var(--vf-sky-2);
    border-radius: 0 var(--vf-radius-sm) var(--vf-radius-sm) 0;
    color: var(--vf-text);
    font-size: 1.1rem;
}
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
pre { background: var(--vf-navy-800); color: #dbe7ff; padding: 1.2em; border-radius: var(--vf-radius-sm); overflow: auto; }
hr { border: 0; border-top: 1px solid var(--vf-line); margin: 2.4em 0; }
::selection { background: var(--vf-blue); color: #fff; }

:focus-visible { outline: 3px solid var(--vf-blue); outline-offset: 2px; border-radius: 4px; }

/* Accessibility: skip link & screen-reader text */
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; width: 1px; margin: -1px; padding: 0; overflow: hidden;
    position: absolute !important; word-wrap: normal !important;
}
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--vf-navy-800); color: #fff; padding: 12px 20px;
    border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* =========================================================================
   Layout helpers
   ========================================================================= */
.vf-container { width: 100%; max-width: var(--vf-container); margin: 0 auto; padding-inline: var(--vf-gutter); }
.vf-container--wide { max-width: 1340px; }
.vf-section { padding-block: var(--vf-section); }
.vf-section--tight { padding-block: clamp(48px, 6vw, 80px); }
.vf-grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.vf-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vf-grid--4 { grid-template-columns: repeat(4, 1fr); }

.vf-eyebrow {
    display: inline-flex; align-items: center; gap: .6em;
    font-family: var(--vf-font-head);
    font-size: .8rem; font-weight: 600; letter-spacing: .14em;
    text-transform: uppercase; color: var(--vf-blue);
    margin: 0 0 1rem;
}
.vf-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--vf-blue); display: inline-block; border-radius: 2px; }
.vf-section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.vf-section-head--center { margin-inline: auto; text-align: center; }
.vf-section-head--center .vf-eyebrow { justify-content: center; }
.vf-lead { font-size: 1.18rem; color: var(--vf-muted); }

/* =========================================================================
   Buttons
   ========================================================================= */
.vf-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .6em;
    font-family: var(--vf-font-head);
    font-weight: 600; font-size: .98rem; line-height: 1;
    padding: 1rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
    cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}
.vf-btn svg { width: 18px; height: 18px; }
.vf-btn--primary { background: var(--vf-blue); color: #fff; box-shadow: 0 12px 26px -10px rgba(27, 92, 255, .65); }
.vf-btn--primary:hover { background: var(--vf-blue-600); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(27, 92, 255, .7); }
.vf-btn--ghost { background: transparent; color: var(--vf-text); border-color: var(--vf-grey-200); }
.vf-btn--ghost:hover { border-color: var(--vf-blue); color: var(--vf-blue); transform: translateY(-2px); }
.vf-btn--light { background: #fff; color: var(--vf-navy-800); }
.vf-btn--light:hover { background: var(--vf-sky); color: var(--vf-navy-800); transform: translateY(-2px); }
.vf-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.vf-btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.vf-btn--block { width: 100%; }
.vf-arrow-link {
    display: inline-flex; align-items: center; gap: .5em;
    font-family: var(--vf-font-head); font-weight: 600; color: var(--vf-blue);
}
.vf-arrow-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.vf-arrow-link:hover svg { transform: translateX(4px); }

/* =========================================================================
   Header
   ========================================================================= */
.vf-topbar {
    background: var(--vf-navy-800); color: #c5d4f5; font-size: .85rem;
}
.vf-topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 9px; flex-wrap: wrap; }
.vf-topbar a { color: #c5d4f5; display: inline-flex; align-items: center; gap: .45em; }
.vf-topbar a:hover { color: #fff; }
.vf-topbar svg { width: 15px; height: 15px; }
.vf-topbar__meta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.vf-topbar__social { display: flex; gap: 14px; align-items: center; }

.vf-site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,255,255,.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--vf-line);
    transition: box-shadow .25s ease, background-color .25s ease;
}
.vf-site-header.is-scrolled { box-shadow: 0 8px 30px -14px rgba(10, 27, 61, .22); }
.vf-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }

.vf-brand { display: inline-flex; align-items: center; gap: 12px; }
.vf-brand img { height: 42px; width: auto; }
.custom-logo, .custom-logo-link img { height: 46px; width: auto; max-width: 240px; display: block; }
.vf-brand__mark { height: 40px; width: auto; }
.vf-brand__text { display: flex; flex-direction: column; line-height: 1; }
.vf-brand__name { font-family: var(--vf-font-head); font-weight: 700; font-size: 1.32rem; letter-spacing: -.02em; color: var(--vf-navy-800); }
.vf-brand__name b { color: var(--vf-blue); font-weight: 800; }
.vf-brand__tag { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--vf-muted); margin-top: 3px; }

/* Primary nav */
.vf-primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.vf-primary-nav li { position: relative; }
.vf-primary-nav a {
    display: inline-flex; align-items: center; gap: .35em;
    font-family: var(--vf-font-head); font-weight: 500; font-size: .96rem;
    color: var(--vf-text); padding: 10px 14px; border-radius: 10px;
}
.vf-primary-nav a:hover,
.vf-primary-nav .current-menu-item > a,
.vf-primary-nav .current_page_item > a,
.vf-primary-nav .current-menu-ancestor > a { color: var(--vf-blue); background: var(--vf-sky); }
.vf-primary-nav .menu-item-has-children > a::after {
    content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); margin-left: 4px; margin-top: -3px; opacity: .6;
}
.vf-primary-nav .sub-menu {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
    background: #fff; border: 1px solid var(--vf-line); border-radius: 14px;
    box-shadow: var(--vf-shadow); padding: 10px; display: block;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 30;
}
.vf-primary-nav li:hover > .sub-menu,
.vf-primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.vf-primary-nav .sub-menu a { width: 100%; padding: 9px 12px; border-radius: 9px; }

.vf-header__actions { display: flex; align-items: center; gap: 14px; }
.vf-nav-toggle {
    display: none; width: 46px; height: 46px; border-radius: 12px;
    border: 1px solid var(--vf-line); background: #fff; cursor: pointer;
    align-items: center; justify-content: center; color: var(--vf-navy-800);
}
.vf-nav-toggle svg { width: 24px; height: 24px; }
.vf-nav-toggle .vf-icon-close { display: none; }
body.vf-nav-open .vf-nav-toggle .vf-icon-open { display: none; }
body.vf-nav-open .vf-nav-toggle .vf-icon-close { display: block; }

/* =========================================================================
   Hero
   ========================================================================= */
.vf-hero {
    position: relative; overflow: hidden; color: #eaf1ff;
    background: radial-gradient(120% 120% at 85% 0%, #14336e 0%, var(--vf-navy-800) 42%, var(--vf-navy-900) 100%);
    padding-block: clamp(72px, 11vw, 140px);
}
.vf-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 26px 26px; opacity: .55; pointer-events: none;
}
.vf-hero__glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.vf-hero__glow--1 { background: rgba(27,92,255,.45); top: -180px; right: -120px; }
.vf-hero__glow--2 { background: rgba(77,159,255,.22); bottom: -240px; left: -160px; }
.vf-hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.vf-hero__badge {
    display: inline-flex; align-items: center; gap: .6em; padding: 8px 16px;
    border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    color: #cfe0ff; font-size: .82rem; font-weight: 600; font-family: var(--vf-font-head); letter-spacing: .03em;
    margin-bottom: 26px;
}
.vf-hero__badge .vf-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vf-accent); box-shadow: 0 0 0 4px rgba(24,192,168,.25); }
.vf-hero h1 { color: #fff; margin-bottom: .55em; }
.vf-hero h1 .vf-grad { color: var(--vf-blue-light); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .vf-hero h1 .vf-grad {
        background: linear-gradient(100deg, #5ea0ff, #9cc4ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}
.vf-hero__lead { font-size: 1.22rem; color: #c2d2f3; max-width: 560px; margin-bottom: 34px; }
.vf-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.vf-hero__stats { display: flex; gap: clamp(20px, 4vw, 44px); flex-wrap: wrap; }
.vf-hero__stat .n { font-family: var(--vf-font-head); font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1; }
.vf-hero__stat .l { font-size: .9rem; color: #9fb6e4; margin-top: 6px; }

.vf-hero__panel {
    position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--vf-radius-lg); padding: 28px; box-shadow: var(--vf-shadow-lg);
    backdrop-filter: blur(6px);
}
.vf-hero__panel h3 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.vf-hero__panel h3 svg { width: 22px; height: 22px; color: var(--vf-blue-light); }
.vf-cert-pill {
    display: flex; align-items: center; gap: 12px; padding: 13px 16px; margin-bottom: 10px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
    color: #dbe6ff; font-size: .92rem; font-weight: 500;
}
.vf-cert-pill:last-child { margin-bottom: 0; }
.vf-cert-pill svg { width: 20px; height: 20px; color: var(--vf-accent); flex: none; }

/* =========================================================================
   Trust / logos / stats bars
   ========================================================================= */
.vf-trust { border-bottom: 1px solid var(--vf-line); background: var(--vf-grey-50); }
.vf-trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-block: 26px; }
.vf-trust__label { font-family: var(--vf-font-head); font-weight: 600; color: var(--vf-muted); font-size: .9rem; }
.vf-trust__items { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.vf-trust__item { display: inline-flex; align-items: center; gap: 8px; color: var(--vf-text); font-weight: 600; font-family: var(--vf-font-head); }
.vf-trust__item svg { width: 20px; height: 20px; color: var(--vf-blue); }

/* =========================================================================
   Cards
   ========================================================================= */
.vf-card {
    background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius);
    padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%; display: flex; flex-direction: column;
}
.vf-card:hover { transform: translateY(-6px); box-shadow: var(--vf-shadow); border-color: #d4def1; }
.vf-card__icon {
    width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
    background: var(--vf-sky); color: var(--vf-blue); margin-bottom: 20px;
}
.vf-card__icon svg { width: 28px; height: 28px; }
.vf-card h3 { font-size: 1.22rem; margin-bottom: .5em; }
.vf-card p { color: var(--vf-muted); font-size: .98rem; margin-bottom: 1.2em; }
.vf-card .vf-arrow-link { margin-top: auto; }

/* Service card variant with number */
.vf-card--num { position: relative; }
.vf-card__num { position: absolute; top: 24px; right: 26px; font-family: var(--vf-font-head); font-weight: 700; font-size: 1rem; color: var(--vf-grey-200); }

/* Industry tiles */
.vf-industry {
    display: flex; align-items: center; gap: 16px; padding: 22px 24px;
    background: #fff; border: 1px solid var(--vf-line); border-radius: 14px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vf-industry:hover { transform: translateY(-4px); box-shadow: var(--vf-shadow-sm); border-color: #d4def1; }
.vf-industry__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--vf-navy-800); color: #fff; display: grid; place-items: center; flex: none; }
.vf-industry__icon svg { width: 24px; height: 24px; }
.vf-industry h4 { margin: 0 0 2px; font-size: 1.05rem; }
.vf-industry p { margin: 0; font-size: .88rem; color: var(--vf-muted); }

/* Why-choose feature */
.vf-feature { display: flex; gap: 16px; }
.vf-feature__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--vf-sky); color: var(--vf-blue); display: grid; place-items: center; flex: none; }
.vf-feature__icon svg { width: 24px; height: 24px; }
.vf-feature h4 { margin: 4px 0 6px; font-size: 1.08rem; }
.vf-feature p { margin: 0; color: var(--vf-muted); font-size: .96rem; }

/* Certification badge card */
.vf-cert {
    background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius);
    padding: 28px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
    position: relative; overflow: hidden;
}
.vf-cert::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--vf-blue), var(--vf-blue-light)); }
.vf-cert:hover { transform: translateY(-6px); box-shadow: var(--vf-shadow); }
.vf-cert__badge { width: 84px; height: 84px; margin: 6px auto 18px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 30% 25%, #2f6bff, #0e2552); color: #fff; box-shadow: 0 14px 26px -12px rgba(27,92,255,.7); }
.vf-cert__badge svg { width: 38px; height: 38px; }
.vf-cert h4 { font-size: 1.02rem; margin-bottom: 6px; }
.vf-cert p { font-size: .85rem; color: var(--vf-muted); margin: 0; }

/* Stats band */
.vf-statsband { background: linear-gradient(110deg, var(--vf-navy-800), var(--vf-navy-700)); color: #fff; border-radius: var(--vf-radius-lg); padding: clamp(36px, 5vw, 56px); }
.vf-statsband .vf-grid { gap: 24px; }
.vf-statbox { text-align: center; }
.vf-statbox .n { font-family: var(--vf-font-head); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: #fff; }
.vf-statbox .l { color: #9fb6e4; font-size: .95rem; }

/* =========================================================================
   Process / steps
   ========================================================================= */
.vf-steps { counter-reset: step; display: grid; gap: 26px; }
.vf-step { display: flex; gap: 22px; align-items: flex-start; }
.vf-step__num {
    flex: none; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    background: var(--vf-navy-800); color: #fff; font-family: var(--vf-font-head); font-weight: 700; font-size: 1.15rem;
}
.vf-step h4 { margin: 6px 0 6px; font-size: 1.18rem; }
.vf-step p { margin: 0; color: var(--vf-muted); }

/* =========================================================================
   Case studies
   ========================================================================= */
.vf-case {
    background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius);
    overflow: hidden; display: flex; flex-direction: column; height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}
.vf-case:hover { transform: translateY(-6px); box-shadow: var(--vf-shadow); }
.vf-case__top { padding: 26px 28px; background: linear-gradient(135deg, var(--vf-navy-800), var(--vf-navy-600)); color: #fff; }
.vf-case__tag { display: inline-block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: #9cc4ff; margin-bottom: 12px; }
.vf-case__top h3 { color: #fff; font-size: 1.3rem; margin: 0; }
.vf-case__body { padding: 26px 28px; display: flex; flex-direction: column; flex: 1; }
.vf-case__body p { color: var(--vf-muted); font-size: .96rem; }
.vf-case__metrics { display: flex; gap: 22px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--vf-line); }
.vf-case__metric .n { font-family: var(--vf-font-head); font-weight: 700; font-size: 1.5rem; color: var(--vf-blue); }
.vf-case__metric .l { font-size: .8rem; color: var(--vf-muted); }

/* =========================================================================
   CTA band
   ========================================================================= */
.vf-cta {
    position: relative; overflow: hidden; color: #fff; text-align: center;
    background: radial-gradient(120% 130% at 50% 0%, var(--vf-navy-700), var(--vf-navy-900));
    border-radius: var(--vf-radius-lg); padding: clamp(48px, 7vw, 84px) var(--vf-gutter);
}
.vf-cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0); background-size: 24px 24px; opacity: .5; }
.vf-cta__glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(27,92,255,.4); filter: blur(120px); top: -200px; left: 50%; transform: translateX(-50%); }
.vf-cta__inner { position: relative; max-width: 720px; margin: 0 auto; }
.vf-cta h2 { color: #fff; }
.vf-cta p { color: #c2d2f3; font-size: 1.15rem; margin-bottom: 30px; }
.vf-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   Page hero / breadcrumbs
   ========================================================================= */
.vf-pagehero {
    position: relative; overflow: hidden; color: #eaf1ff;
    background: radial-gradient(120% 140% at 80% -10%, #14336e, var(--vf-navy-800) 55%, var(--vf-navy-900));
    padding-block: clamp(56px, 8vw, 96px);
}
.vf-pagehero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0); background-size: 26px 26px; opacity: .5; }
.vf-pagehero__inner { position: relative; max-width: 820px; }
.vf-pagehero h1 { color: #fff; margin-bottom: .4em; }
.vf-pagehero p { color: #c2d2f3; font-size: 1.15rem; margin: 0; max-width: 640px; }
.vf-breadcrumbs { font-size: .85rem; color: #9fb6e4; margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.vf-breadcrumbs a { color: #c2d2f3; }
.vf-breadcrumbs a:hover { color: #fff; }
.vf-breadcrumbs .sep { opacity: .5; }
.vf-breadcrumbs .current { color: #fff; }
/* breadcrumbs on light pages */
.vf-breadcrumbs--light { color: var(--vf-muted); margin-bottom: 0; }
.vf-breadcrumbs--light a { color: var(--vf-text-soft); }
.vf-breadcrumbs--light a:hover { color: var(--vf-blue); }
.vf-breadcrumbs--light .current { color: var(--vf-blue); }

/* =========================================================================
   Detailed service rows
   ========================================================================= */
.vf-srow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.vf-srow + .vf-srow { margin-top: clamp(48px, 7vw, 90px); }
.vf-srow:nth-child(even) .vf-srow__media { order: -1; }
.vf-srow__icon { width: 60px; height: 60px; border-radius: 16px; background: var(--vf-sky); color: var(--vf-blue); display: grid; place-items: center; margin-bottom: 20px; }
.vf-srow__icon svg { width: 30px; height: 30px; }
.vf-srow h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.vf-srow ul.vf-checklist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.vf-checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--vf-text-soft); }
.vf-checklist li svg { width: 22px; height: 22px; color: var(--vf-accent); flex: none; margin-top: 2px; }
.vf-srow__media {
    background: linear-gradient(150deg, var(--vf-sky-2), #fff); border: 1px solid var(--vf-line);
    border-radius: var(--vf-radius-lg); padding: 34px; box-shadow: var(--vf-shadow-sm);
}
.vf-srow__media .vf-mini { display: flex; align-items: center; gap: 14px; padding: 16px; background: #fff; border: 1px solid var(--vf-line); border-radius: 14px; margin-bottom: 12px; }
.vf-srow__media .vf-mini:last-child { margin-bottom: 0; }
.vf-srow__media .vf-mini svg { width: 24px; height: 24px; color: var(--vf-blue); flex: none; }
.vf-srow__media .vf-mini b { display: block; color: var(--vf-text); font-family: var(--vf-font-head); }
.vf-srow__media .vf-mini span { font-size: .85rem; color: var(--vf-muted); }

/* =========================================================================
   About
   ========================================================================= */
.vf-founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.vf-founder__card {
    background: linear-gradient(160deg, var(--vf-navy-800), var(--vf-navy-700)); color: #fff;
    border-radius: var(--vf-radius-lg); padding: 38px; box-shadow: var(--vf-shadow-lg);
}
.vf-founder__avatar { width: 96px; height: 96px; border-radius: 24px; background: radial-gradient(circle at 30% 25%, #2f6bff, #0e2552); display: grid; place-items: center; font-family: var(--vf-font-head); font-weight: 700; font-size: 2rem; color: #fff; margin-bottom: 22px; }
.vf-founder__card h3 { color: #fff; margin-bottom: 4px; }
.vf-founder__role { color: #9cc4ff; font-weight: 600; font-family: var(--vf-font-head); margin-bottom: 18px; }
.vf-founder__card .vf-cert-pill { background: rgba(255,255,255,.06); }

.vf-value { background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius); padding: 26px; height: 100%; }
.vf-value__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--vf-sky); color: var(--vf-blue); display: grid; place-items: center; margin-bottom: 16px; }
.vf-value__icon svg { width: 24px; height: 24px; }
.vf-value h4 { margin-bottom: 6px; }
.vf-value p { margin: 0; color: var(--vf-muted); font-size: .95rem; }

/* =========================================================================
   Contact
   ========================================================================= */
.vf-contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.vf-form { background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--vf-shadow-sm); }
.vf-field { margin-bottom: 18px; }
.vf-field label { display: block; font-family: var(--vf-font-head); font-weight: 600; font-size: .9rem; color: var(--vf-text); margin-bottom: 7px; }
.vf-field .req { color: var(--vf-blue); }
.vf-field input, .vf-field textarea, .vf-field select {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--vf-grey-200); border-radius: 12px;
    font-family: var(--vf-font-body); font-size: 1rem; color: var(--vf-text); background: var(--vf-grey-50);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.vf-field input:focus, .vf-field textarea:focus, .vf-field select:focus { outline: none; border-color: var(--vf-blue); background: #fff; box-shadow: var(--vf-ring); }
.vf-field textarea { min-height: 140px; resize: vertical; }
.vf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vf-notice { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-weight: 500; display: flex; gap: 10px; align-items: center; }
.vf-notice svg { width: 20px; height: 20px; flex: none; }
.vf-notice--ok { background: #e7f8f2; color: #0c7c5e; border: 1px solid #b8ead9; }
.vf-notice--err { background: #fdeced; color: #c23939; border: 1px solid #f6c9cc; }
.vf-honeypot { position: absolute; left: -9999px; }
.vf-recaptcha { margin-bottom: 20px; }
.vf-recaptcha .g-recaptcha { display: inline-block; }
@media (max-width: 360px) {
    .vf-recaptcha { transform: scale(0.86); transform-origin: 0 0; }
}

.vf-contact-aside .vf-info { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--vf-line); border-radius: 14px; margin-bottom: 14px; }
.vf-contact-aside .vf-info__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--vf-sky); color: var(--vf-blue); display: grid; place-items: center; flex: none; }
.vf-contact-aside .vf-info__icon svg { width: 22px; height: 22px; }
.vf-contact-aside .vf-info b { display: block; font-family: var(--vf-font-head); color: var(--vf-text); }
.vf-contact-aside .vf-info a, .vf-contact-aside .vf-info span { color: var(--vf-muted); }
.vf-contact-aside .vf-info a:hover { color: var(--vf-blue); }

/* =========================================================================
   Blog / posts
   ========================================================================= */
.vf-blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(32px, 5vw, 52px); align-items: start; }
.vf-postcard {
    background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius); overflow: hidden;
    display: flex; flex-direction: column; height: 100%; transition: transform .25s ease, box-shadow .25s ease;
}
.vf-postcard:hover { transform: translateY(-5px); box-shadow: var(--vf-shadow); }
.vf-postcard__thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--vf-grey-100); }
.vf-postcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vf-postcard:hover .vf-postcard__thumb img { transform: scale(1.05); }
.vf-postcard__thumb--ph { display: grid; place-items: center; background: linear-gradient(135deg, var(--vf-navy-800), var(--vf-navy-600)); }
.vf-postcard__thumb--ph svg { width: 54px; height: 54px; color: rgba(255,255,255,.5); }
.vf-postcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.vf-post-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--vf-muted); margin-bottom: 12px; }
.vf-post-meta span { display: inline-flex; align-items: center; gap: 5px; }
.vf-post-meta svg { width: 15px; height: 15px; }
.vf-postcard h3 { font-size: 1.22rem; margin-bottom: 10px; }
.vf-postcard h3 a { color: var(--vf-text); }
.vf-postcard h3 a:hover { color: var(--vf-blue); }
.vf-postcard p { color: var(--vf-muted); font-size: .95rem; }
.vf-postcard .vf-arrow-link { margin-top: auto; }
.vf-cat-chip { display: inline-block; background: var(--vf-sky); color: var(--vf-blue); font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }

/* Single post */
.vf-single__header { max-width: 800px; }
.vf-single__featured { border-radius: var(--vf-radius-lg); overflow: hidden; margin: 32px 0; box-shadow: var(--vf-shadow); }
.vf-entry-content { font-size: 1.08rem; }
.vf-entry-content > * { max-width: 800px; }
.vf-entry-content > .alignwide { max-width: 1040px; }
.vf-entry-content > .alignfull { max-width: none; }
.vf-entry-content h2 { margin-top: 1.6em; }
.vf-entry-content h3 { margin-top: 1.4em; }
.vf-entry-content img { border-radius: var(--vf-radius-sm); }
.vf-entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.vf-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.vf-tags a { background: var(--vf-grey-100); color: var(--vf-text-soft); padding: 6px 14px; border-radius: 999px; font-size: .85rem; }
.vf-tags a:hover { background: var(--vf-blue); color: #fff; }
.vf-postnav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--vf-line); flex-wrap: wrap; }
.vf-postnav a { max-width: 48%; }
.vf-postnav .lbl { font-size: .8rem; color: var(--vf-muted); }
.vf-postnav .ttl { font-family: var(--vf-font-head); font-weight: 600; color: var(--vf-text); }

/* Sidebar / widgets */
.vf-sidebar .widget { background: #fff; border: 1px solid var(--vf-line); border-radius: var(--vf-radius); padding: 26px; margin-bottom: 24px; }
.vf-sidebar .widget-title { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--vf-sky); }
.vf-sidebar ul { list-style: none; padding: 0; margin: 0; }
.vf-sidebar li { padding: 8px 0; border-bottom: 1px solid var(--vf-grey-100); }
.vf-sidebar li:last-child { border-bottom: 0; }
.vf-sidebar a { color: var(--vf-text-soft); }
.vf-sidebar a:hover { color: var(--vf-blue); }
.vf-aside-cta { background: linear-gradient(160deg, var(--vf-navy-800), var(--vf-navy-700)); color: #fff; border-radius: var(--vf-radius); padding: 28px; }
.vf-aside-cta h3 { color: #fff; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.vf-aside-cta h3 svg { width: 22px; height: 22px; flex: none; color: var(--vf-blue-light); }
.vf-aside-cta p { color: #c2d2f3; font-size: .95rem; }

/* Search form */
.vf-searchform { display: flex; gap: 8px; }
.vf-searchform input[type="search"] { flex: 1; padding: 11px 14px; border: 1.5px solid var(--vf-grey-200); border-radius: 10px; background: var(--vf-grey-50); font-size: .95rem; }
.vf-searchform input[type="search"]:focus { outline: none; border-color: var(--vf-blue); box-shadow: var(--vf-ring); }
.vf-searchform button { border: 0; background: var(--vf-blue); color: #fff; border-radius: 10px; padding: 0 14px; cursor: pointer; display: grid; place-items: center; }
.vf-searchform button svg { width: 18px; height: 18px; }

/* Pagination */
.vf-pagination { margin-top: 50px; }
.vf-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.vf-pagination .page-numbers {
    display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
    border: 1px solid var(--vf-line); border-radius: 12px; font-family: var(--vf-font-head); font-weight: 600;
    color: var(--vf-text); background: #fff;
}
.vf-pagination .page-numbers:hover, .vf-pagination .page-numbers.current { background: var(--vf-blue); color: #fff; border-color: var(--vf-blue); }

/* =========================================================================
   Comments
   ========================================================================= */
.vf-comments { margin-top: 50px; padding-top: 36px; border-top: 1px solid var(--vf-line); }
.vf-comments .comment-list { list-style: none; padding: 0; }
.vf-comments .comment-body { background: var(--vf-grey-50); border: 1px solid var(--vf-line); border-radius: 14px; padding: 20px 22px; margin-bottom: 16px; }
.vf-comments .children { list-style: none; margin-left: 28px; }
.vf-comments .comment-author { font-family: var(--vf-font-head); font-weight: 600; color: var(--vf-text); }
.vf-comment-respond { margin-top: 30px; }
.vf-comment-respond input[type="text"], .vf-comment-respond input[type="email"], .vf-comment-respond input[type="url"], .vf-comment-respond textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--vf-grey-200); border-radius: 10px; margin-bottom: 14px; font-family: var(--vf-font-body);
}

/* =========================================================================
   Footer
   ========================================================================= */
.vf-site-footer { background: var(--vf-navy-900); color: #9fb0d0; margin-top: 0; }
.vf-footer__top { padding-block: clamp(54px, 7vw, 84px); }
.vf-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
.vf-footer__brand img { height: 56px; width: auto; margin-bottom: 18px; }
.vf-footer__brand p { color: #8a9bbd; max-width: 320px; font-size: .95rem; }
.vf-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.vf-footer__social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: #c2d2f3; transition: background-color .2s ease, transform .2s ease; }
.vf-footer__social a:hover { background: var(--vf-blue); color: #fff; transform: translateY(-3px); border-color: var(--vf-blue); }
.vf-footer__social svg { width: 19px; height: 19px; }
.vf-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.vf-footer__col ul { list-style: none; padding: 0; margin: 0; }
.vf-footer__col li { margin-bottom: 11px; }
.vf-footer__col a { color: #9fb0d0; font-size: .95rem; }
.vf-footer__col a:hover { color: #fff; }
.vf-footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .92rem; }
.vf-footer__contact svg { width: 18px; height: 18px; color: var(--vf-blue-light); flex: none; margin-top: 3px; }
.vf-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px; }
.vf-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: #7e8eb0; }
.vf-footer__bottom a { color: #9fb0d0; }
.vf-footer__bottom a:hover { color: #fff; }

/* =========================================================================
   Generic page content
   ========================================================================= */
.vf-page-content { max-width: 820px; }
.vf-page-content img { border-radius: var(--vf-radius-sm); }
.vf-prose h2 { margin-top: 1.6em; }
.vf-prose ul li { margin-bottom: 6px; }

.vf-bg-grey { background: var(--vf-grey-50); }
.vf-bg-sky { background: var(--vf-sky-2); }

/* Client / partner logo wall */
.vf-logowall { padding-block: clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--vf-line); }
.vf-logowall__label { text-align: center; font-family: var(--vf-font-head); font-weight: 600; font-size: .92rem; letter-spacing: .04em; color: var(--vf-muted); margin: 0 0 26px; }
.vf-logowall__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 52px); }
.vf-logowall__item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--vf-font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; color: #9aa6b8; filter: grayscale(1); opacity: .85; transition: color .2s ease, opacity .2s ease, transform .2s ease, filter .2s ease; }
.vf-logowall__item svg { width: 22px; height: 22px; }
.vf-logowall__item:hover { color: var(--vf-blue); opacity: 1; filter: grayscale(0); transform: translateY(-2px); }
.vf-text-center { text-align: center; }

/* WordPress core alignment + caption classes */
.aligncenter { display: block; margin-inline: auto; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--vf-muted); text-align: center; margin-top: 8px; }
.sticky, .gallery-caption, .bypostauthor { display: block; }
.wp-block-button__link { border-radius: 999px; }

/* Reveal on scroll */
.vf-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.vf-reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
    .vf-hero__inner { grid-template-columns: 1fr; }
    .vf-hero__panel { max-width: 520px; }
    .vf-footer__grid { grid-template-columns: 1fr 1fr; }
    .vf-founder { grid-template-columns: 1fr; }
    .vf-blog-layout { grid-template-columns: 1fr; }
    .vf-contact { grid-template-columns: 1fr; }
    .vf-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    /* A backdrop-filter ancestor creates a containing block for position:fixed
       descendants, which would trap the off-canvas menu inside the short header.
       Disable it at mobile widths so the drawer/overlay anchor to the viewport. */
    .vf-site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255, 255, 255, .98); }
    .vf-nav-toggle { display: inline-flex; }
    .vf-primary-nav {
        position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); height: 100%; max-height: 100vh;
        background: #fff; box-shadow: var(--vf-shadow-lg); padding: 110px 24px 30px;
        transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; z-index: 150;
    }
    body.vf-nav-open .vf-primary-nav { transform: translateX(0); }
    .vf-primary-nav ul { flex-direction: column; gap: 2px; }
    .vf-primary-nav a { padding: 14px 16px; font-size: 1.05rem; }
    .vf-primary-nav .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; padding: 0 0 0 14px; background: transparent;
    }
    .vf-nav-overlay { position: fixed; inset: 0; background: rgba(6,15,36,.5); opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: 140; }
    body.vf-nav-open .vf-nav-overlay { opacity: 1; visibility: visible; }
    .vf-header__actions .vf-btn--primary { display: none; }
    .vf-srow { grid-template-columns: 1fr; }
    .vf-srow:nth-child(even) .vf-srow__media { order: 0; }
}
@media (max-width: 680px) {
    body { font-size: 16px; }
    .vf-grid--2, .vf-grid--3, .vf-grid--4 { grid-template-columns: 1fr; }
    .vf-form__row { grid-template-columns: 1fr; }
    .vf-brand__tag { display: none; }
    .vf-topbar { display: none; }
    .vf-footer__grid { grid-template-columns: 1fr; }
    .vf-postnav a { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .vf-reveal { opacity: 1; transform: none; }
}
