:root {
    --primary: #0b3b78;
    --primary-dark: #082b59;
    --navy: #0f1f3d;
    --accent: #f5b82e;
    --accent-dark: #d39a14;
    --text: #17233c;
    --muted: #64748b;
    --light-bg: #f5f9fd;
    --white: #ffffff;
    --border: #e2e8f0;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(15, 31, 61, 0.08);
    --container: 1180px;
    --header-h: 88px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-family: var(--font); }
html, body, button, input, select, textarea {
    font-family: var(--font);
}
body.vrk-body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--navy);
    line-height: 1.25;
    margin: 0 0 0.6em;
    font-weight: 750;
}
p { margin: 0 0 1em; }
.vrk-skip {
    position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--navy); padding: 8px 12px; z-index: 10000;
}
.vrk-skip:focus { left: 12px; top: 12px; }
.vrk-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.vrk-container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.vrk-muted { color: var(--muted); }
.vrk-kicker { color: #c2410c; font-weight: 700; letter-spacing: 0.12em; font-size: 0.78rem; text-transform: uppercase; margin-bottom: 10px; font-family: var(--font); }

.vrk-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 999px; padding: 12px 22px; font-weight: 700; border: 2px solid transparent;
    cursor: pointer; transition: 0.2s ease; font-family: var(--font); font-size: 0.95rem;
}
.vrk-btn:focus-visible, .vrk-nav a:focus-visible, .vrk-form input:focus-visible, .vrk-form select:focus-visible, .vrk-form textarea:focus-visible, .vrk-nav-toggle:focus-visible {
    outline: 3px solid var(--accent); outline-offset: 2px;
}
.vrk-btn-primary { background: var(--primary); color: #fff; }
.vrk-btn-primary:hover { background: var(--primary-dark); color: #fff; }
.vrk-btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.vrk-btn-outline:hover { background: var(--primary); color: #fff; }
.vrk-btn-accent { background: var(--accent); color: var(--navy); }
.vrk-btn-accent:hover { background: var(--accent-dark); color: var(--navy); }
.vrk-btn-ghost { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.vrk-btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.vrk-btn-nav { padding: 8px 16px; }

.vrk-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--border); transition: box-shadow 0.2s; }
.vrk-header.is-scrolled { box-shadow: var(--shadow); }
.vrk-header-top { background: var(--light-bg); font-size: 0.85rem; }
.vrk-header-top-inner { display: flex; gap: 18px; align-items: center; justify-content: flex-end; min-height: 36px; flex-wrap: wrap; }
.vrk-header-main-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.vrk-logo img { height: 52px; width: auto; }
.vrk-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; align-items: center; }
.vrk-nav a { color: var(--text); padding: 10px 12px; border-radius: 8px; font-weight: 600; display: block; }
.vrk-nav a.is-active, .vrk-nav a[aria-current="page"] { color: var(--primary); }
.vrk-nav .has-sub { position: relative; }
.vrk-nav .has-sub > ul {
    position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; box-shadow: var(--shadow);
    border-radius: 12px; padding: 8px; display: none;
}
.vrk-nav .has-sub:hover > ul, .vrk-nav .has-sub:focus-within > ul { display: block; }
.vrk-nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.vrk-nav-toggle span { display: block; height: 2px; background: var(--navy); margin: 7px 10px; }

.vrk-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 543px;
    aspect-ratio: 2158 / 543;
    background: #e8f1fb;
    overflow: hidden;
}
.vrk-hero-media {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.vrk-hero-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    image-rendering: auto;
}
.vrk-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(247,251,255,0.94) 0%, rgba(247,251,255,0.78) 36%, rgba(247,251,255,0.08) 58%, rgba(11,59,120,0.05) 100%);
}
.vrk-hero-inner { position: absolute; inset: 0; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 0; align-items: center; }
.vrk-hero-copy { padding: 48px 0; max-width: 560px; }
.vrk-hero h1 { 
    font-size: clamp(2rem, 4vw, 3.3rem);
    white-space: nowrap;
    margin-bottom: 16px;
 }
.vrk-hero-desc { color: var(--muted); font-weight: 600; margin-bottom: 24px; }
.vrk-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.vrk-hero-side { position: relative; min-height: 0; height: 100%; }
.vrk-script {
    position: absolute; top: 12%; right: 6%; color: #fff; font-family: var(--font);
    font-style: italic; font-weight: 600;
    font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1.15; text-shadow: 0 8px 24px rgba(0,0,0,0.25); white-space: pre-line; text-align: right;
}
.vrk-hero-badge {
    position: absolute; right: 8%; bottom: 12%; background: var(--accent); color: var(--navy);
    border-radius: 999px; padding: 16px 28px; font-weight: 800; text-align: center; box-shadow: var(--shadow); white-space: pre-line; line-height: 1.25;
}

.vrk-section { padding: 72px 0; }
.vrk-section-light { background: var(--light-bg); }
.vrk-section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.vrk-stats {
    background: #f3f8fd;
    color: var(--navy);
    padding: 22px 0;
}
.vrk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
}
.vrk-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 10px 18px;
    position: relative;
}
.vrk-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 46px;
    background: #d7e4f2;
}
.vrk-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e7f0fa;
    color: #0b3b78;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.vrk-stat-icon svg { width: 28px; height: 28px; fill: currentColor; display: block; }
.vrk-stat-icon .fa { font-size: 1.35rem; }
.vrk-stat-copy { min-width: 0; }
.vrk-stat-value { font-size: 1.7rem; font-weight: 800; color: #0b3b78; font-family: var(--font); line-height: 1.15; letter-spacing: -0.02em; }
.vrk-stat-unit { font-size: 1.15rem; font-weight: 800; }
.vrk-stat p { margin: 2px 0 0; color: #66768a; font-size: 0.84rem; font-weight: 500; }
@media (max-width: 991px) {
    .vrk-stat:nth-child(2)::after { display: none; }
}
@media (max-width: 767px) {
    .vrk-stat::after { display: none; }
}

.vrk-about-grid, .vrk-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.vrk-about-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.vrk-about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.vrk-mvv { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin: 20px 0; }
.vrk-mvv article { background: var(--light-bg); border-radius: 12px; padding: 14px; }
.vrk-mvv h3 { font-size: 1rem; margin-bottom: 6px; }

.vrk-home-about { padding: 36px 0 48px; }
.vrk-home-about-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(260px, 1.15fr) minmax(240px, 0.95fr);
    gap: 22px;
    align-items: stretch;
}
.vrk-about-portrait {
    margin: 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 31, 61, 0.08);
    overflow: hidden;
    min-height: 280px;
}
.vrk-about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    min-height: 280px;
}
.vrk-about-portrait blockquote {
    margin: 0;
    padding: 22px 16px 22px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #0b3b78;
}
.vrk-about-portrait blockquote p {
    margin: 0;
    font-style: italic;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #163a73;
}
.vrk-about-portrait cite {
    margin-top: 14px;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 600;
    color: #5b6b80;
}
.vrk-about-story { display: flex; flex-direction: column; justify-content: center; }
.vrk-about-story .vrk-kicker { color: #1d4ed8; letter-spacing: 0.08em; }
.vrk-about-story h2 { font-size: clamp(1.55rem, 2.2vw, 2.05rem); margin-bottom: 12px; }
.vrk-about-story .vrk-prose { color: #4b5b70; font-size: 0.95rem; }
.vrk-about-story .vrk-prose p { margin-bottom: 0.75em; }
.vrk-about-story .vrk-btn { align-self: flex-start; margin-top: 6px; }
.vrk-about-mvv {
    background: #eef5fc;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.vrk-about-mvv article { display: flex; gap: 12px; align-items: flex-start; }
.vrk-mvv-icon {
    width: 36px;
    height: 36px;
    color: #0b3b78;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
.vrk-mvv-icon svg { width: 28px; height: 28px; display: block; }
.vrk-about-mvv h3 { font-size: 0.98rem; margin: 0 0 4px; color: #0b3b78; }
.vrk-about-mvv p { margin: 0; color: #5b6b80; font-size: 0.88rem; }

.vrk-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.vrk-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; height: 100%;
    transition: transform 0.2s ease;
}
.vrk-card:hover { transform: translateY(-4px); }
.vrk-card img { height: 170px; width: 100%; object-fit: cover; }
.vrk-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vrk-card-body h3 { font-size: 1.15rem; }
.vrk-icon-circle { width: 44px; height: 44px; border-radius: 12px; background: var(--light-bg); color: var(--primary); display: grid; place-items: center; }

.vrk-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vrk-why article { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.vrk-why h3 { font-size: 1.1rem; }

.vrk-testimonials { position: relative; }
.vrk-testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vrk-testi-card { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.vrk-testi-top { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.vrk-testi-top img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--light-bg); }
.vrk-stars { color: var(--accent); letter-spacing: 2px; }
.vrk-carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.vrk-carousel-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; }

.vrk-cta {
    position: relative; color: #fff; min-height: 280px; display: grid; align-items: center;
    background: var(--primary-dark) center/cover no-repeat;
}
.vrk-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,43,89,0.92), rgba(11,59,120,0.72)); }
.vrk-cta .vrk-container { position: relative; z-index: 1; text-align: center; }
.vrk-cta h2, .vrk-cta p { color: #fff; }
.vrk-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

.vrk-page-banner {
    background: linear-gradient(90deg, rgba(8,43,89,0.88), rgba(11,59,120,0.55)), var(--vrk-banner-image) center/cover no-repeat;
    color: #fff; min-height: 220px; display: grid; align-items: center; text-align: center; padding: 48px 16px;
}
.vrk-page-banner h1, .vrk-page-banner p { color: #fff; }
.vrk-page-content { padding: 56px 0; }
.vrk-prose { max-width: 80ch; }
.vrk-prose img { border-radius: 12px; margin: 12px 0; }

.vrk-form { background: #fff; border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.vrk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vrk-field { display: flex; flex-direction: column; gap: 6px; }
.vrk-field-full { grid-column: 1 / -1; }
.vrk-field label { font-weight: 650; font-size: 0.92rem; }
.vrk-form input, .vrk-form select, .vrk-form textarea {
    border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-family: var(--font); font-size: 1rem; width: 100%;
}
.vrk-field-error { color: #b42318; margin: 0; font-size: 0.85rem; }
.vrk-alert { padding: 12px 14px; border-radius: 10px; margin-bottom: 14px; }
.vrk-alert-success { background: #ecfdf3; color: #027a48; }
.vrk-alert-error { background: #fef3f2; color: #b42318; }
.vrk-honeypot { position: absolute; left: -9999px; }

.vrk-contact-details { display: grid; gap: 14px; }
.vrk-contact-details article { background: var(--light-bg); border-radius: 12px; padding: 14px 16px; }
.vrk-map { border: 0; width: 100%; min-height: 240px; border-radius: 16px; }

.vrk-gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.vrk-gallery-filters button { border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 8px 14px; cursor: pointer; }
.vrk-gallery-filters button.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.vrk-gallery-grid { columns: 3 240px; column-gap: 14px; }
.vrk-gallery-item { break-inside: avoid; margin-bottom: 14px; position: relative; border-radius: 14px; overflow: hidden; }
.vrk-gallery-item img { width: 100%; display: block; transition: transform 0.35s ease; }
.vrk-gallery-item:hover img { transform: scale(1.04); }
.vrk-gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.65)); font-size: 0.9rem; }
.vrk-empty { text-align: center; padding: 40px 16px; color: var(--muted); background: var(--light-bg); border-radius: var(--radius); }

.vrk-lightbox { position: fixed; inset: 0; background: rgba(8,43,89,0.92); display: none; align-items: center; justify-content: center; z-index: 80; padding: 24px; }
.vrk-lightbox.is-open { display: flex; }
.vrk-lightbox img { max-width: min(92vw, 1100px); max-height: 80vh; border-radius: 12px; }
.vrk-lightbox-caption { color: #fff; position: absolute; bottom: 28px; text-align: center; width: 100%; }
.vrk-lightbox button { position: absolute; background: transparent; color: #fff; border: 0; font-size: 2rem; cursor: pointer; }
.vrk-lb-close { top: 16px; right: 20px; }
.vrk-lb-prev { left: 12px; }
.vrk-lb-next { right: 12px; }

.vrk-footer { background: var(--navy); color: rgba(255,255,255,0.84); padding: 48px 0 28px; }
.vrk-footer h2 { color: #fff; font-size: 1.1rem; }
.vrk-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1fr; gap: 28px; }
.vrk-footer-links { list-style: none; margin: 0; padding: 0; }
.vrk-footer-links a, .vrk-footer a { color: rgba(255,255,255,0.86); }
.vrk-footer-social { display: flex; gap: 10px; margin-bottom: 12px; }
.vrk-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.vrk-logo-footer img { height: 48px; margin-bottom: 12px; filter: brightness(0) invert(1); }

@media (max-width: 1199px) {
    .vrk-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .vrk-hero-side { display: none; }
    .vrk-hero-inner { grid-template-columns: 1fr; }
    .vrk-hero-copy { max-width: 540px; }
    .vrk-nav-toggle { display: none; }
    .vrk-nav { display: block; position: static; box-shadow: none; padding: 0; }
}
@media (max-width: 991px) {
    .vrk-nav-toggle { display: block; }
    .vrk-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow); padding: 12px; }
    .vrk-nav.is-open { display: block; }
    .vrk-nav ul { flex-direction: column; align-items: stretch; }
    .vrk-nav .has-sub > ul { position: static; box-shadow: none; display: block; }
    .vrk-header { position: sticky; }
    .vrk-header-main { position: relative; }
    .vrk-stats-grid, .vrk-about-grid, .vrk-contact-grid, .vrk-why, .vrk-testi-track, .vrk-footer-grid, .vrk-form-grid, .vrk-mvv { grid-template-columns: 1fr 1fr; }
    .vrk-home-about-grid { grid-template-columns: 1fr 1fr; }
    .vrk-about-portrait { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
    .vrk-cards, .vrk-why, .vrk-about-grid, .vrk-contact-grid, .vrk-testi-track, .vrk-footer-grid, .vrk-form-grid, .vrk-mvv { grid-template-columns: 1fr; }
    .vrk-home-about-grid { grid-template-columns: 1fr; }
    .vrk-gallery-grid { columns: 2 140px; }
    .vrk-section { padding: 48px 0; }

    .vrk-hero {
        aspect-ratio: auto;
        max-height: none;
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        background: #e8f1fb;
    }
    .vrk-hero-media {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        overflow: hidden;
        background: #e8f1fb;
    }
    .vrk-hero-media img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: none;
        object-fit: contain;
        object-position: center center;
    }
    .vrk-hero-overlay {
        display: none;
    }
    .vrk-hero-inner {
        position: relative;
        inset: auto;
        display: block;
        width: min(var(--container), calc(100% - 32px));
        padding: 18px 0 8px;
    }
    .vrk-hero-copy {
        max-width: 100%;
        padding: 0 0 12px;
    }
    .vrk-hero .vrk-kicker {
        font-size: clamp(0.62rem, 2.8vw, 0.78rem);
        letter-spacing: 0.08em;
        margin-bottom: 8px;
    }
    .vrk-hero h1 {
        white-space: normal;
        font-size: clamp(1.4rem, 6.4vw, 2.05rem);
        line-height: 1.18;
        margin-bottom: 10px;
        word-break: break-word;
    }
    .vrk-hero-desc {
        font-size: clamp(0.82rem, 3.4vw, 0.95rem);
        line-height: 1.45;
        margin-bottom: 14px;
    }
    .vrk-hero-actions {
        gap: 10px;
    }
    .vrk-hero-actions .vrk-btn {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    .vrk-hero-side {
        display: none;
    }

    .vrk-stats {
        padding: 16px 0 20px;
    }
    .vrk-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px 10px;
    }
    .vrk-stat {
        padding: 6px 4px;
        gap: 10px;
        align-items: flex-start;
    }
    .vrk-stat::after {
        display: none;
    }
    .vrk-stat-icon {
        width: 46px;
        height: 46px;
    }
    .vrk-stat-icon svg {
        width: 22px;
        height: 22px;
    }
    .vrk-stat-value {
        font-size: clamp(1.05rem, 4.6vw, 1.35rem);
    }
    .vrk-stat p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}
@media (max-width: 479px) {
    .vrk-gallery-grid { columns: 1; }
    .vrk-btn { width: 100%; }
    .vrk-hero-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

.vrk-prose, .vrk-prose p, .vrk-prose h1, .vrk-prose h2, .vrk-prose h3, .vrk-prose h4, .vrk-prose li, .vrk-prose span, .vrk-prose strong, .vrk-prose a, .vrk-prose td, .vrk-prose th {
    font-family: var(--font) !important;
}
.fa, .fa:before, .fa:after, [class^="fa-"]:before, [class*=" fa-"]:before {
    font-family: FontAwesome !important;
}
