/*
Theme Name: VisionPro NDT
Theme URI: https://visionprondt.com/
Author: VisionPro NDT
Description: Premium custom WordPress theme for VisionPro NDT Solutions.
Version: 1.0.0
Text Domain: visionpro-ndt
*/


/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {
    --vp-navy: #071638;
    --vp-navy-2: #0b1f4b;
    --vp-blue: #1769e0;
    --vp-blue-light: #4da3ff;
    --vp-blue-soft: #eaf3ff;

    --vp-white: #ffffff;
    --vp-black: #020817;

    --vp-bg: #f5f8fc;
    --vp-bg-2: #edf3fa;

    --vp-text: #091733;
    --vp-text-light: #61708a;

    --vp-border: rgba(7, 22, 56, 0.10);

    --vp-container: 1400px;

    --vp-radius-sm: 8px;
    --vp-radius-md: 16px;
    --vp-radius-lg: 26px;
    --vp-radius-xl: 36px;

    --vp-shadow:
        0 20px 60px rgba(7, 22, 56, 0.10);

    --vp-transition:
        0.4s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--vp-white);
    color: var(--vp-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   GLOBAL
========================================================= */

.vp-container {
    width: min(
        calc(100% - 48px),
        var(--vp-container)
    );

    margin-inline: auto;
}

.vp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--vp-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.vp-eyebrow::before {
    content: "";

    width: 28px;
    height: 2px;

    background: var(--vp-blue);
}

.vp-section-heading {
    max-width: 780px;

    margin-bottom: 65px;
}

.vp-section-heading h2 {
    margin: 18px 0;

    color: var(--vp-text);

    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;

    letter-spacing: -2.5px;
}

.vp-section-heading h2 span {
    color: var(--vp-blue);
}

.vp-section-heading p {
    max-width: 680px;

    margin-bottom: 0;

    color: var(--vp-text-light);

    font-size: 17px;
    line-height: 1.8;
}

.vp-section-heading-split {
    max-width: none;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;
}

.vp-section-heading-split > p {
    max-width: 470px;
}


/* =========================================================
   BUTTONS
========================================================= */

.vp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    padding: 0 24px;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform var(--vp-transition),
        box-shadow var(--vp-transition),
        background var(--vp-transition);
}

.vp-btn-primary {
    background:
        linear-gradient(
            135deg,
            #1769e0,
            #43a0ff
        );

    color: #fff;

    box-shadow:
        0 14px 35px rgba(23, 105, 224, 0.24);
}

.vp-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(23, 105, 224, 0.34);
}

.vp-btn-secondary {
    border: 1px solid var(--vp-border);

    background: #fff;

    color: var(--vp-text);
}

.vp-btn-secondary:hover {
    transform: translateY(-3px);

    border-color: var(--vp-blue);

    color: var(--vp-blue);

    box-shadow:
        0 12px 35px rgba(7, 22, 56, 0.08);
}

.vp-text-link {
    color: var(--vp-blue);

    font-size: 13px;
    font-weight: 800;

    transition:
        color var(--vp-transition);
}

.vp-text-link:hover {
    color: var(--vp-navy);
}


/* =========================================================
   HEADER
========================================================= */

.vp-header {
    position: relative;
    z-index: 1000;

    width: 100%;

   background: #071A45;

    color: #fff;
}

.vp-header-inner {
    width: min(
        calc(100% - 48px),
        var(--vp-container)
    );

    min-height: 82px;

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.vp-logo {
    flex: 0 0 auto;
}

.vp-logo a {
    display: inline-flex;
    align-items: center;
}

.vp-logo .custom-logo {
    width: auto;
    max-width: 210px;
    max-height: 60px;
    object-fit: contain;

    filter: brightness(1.25) contrast(1.15)
            drop-shadow(0 0 8px rgba(77,163,255,.45));
}

    object-fit: contain;
}

.vp-logo-fallback {
    display: flex !important;
    flex-direction: column;
}

.vp-logo-name {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1px;
}

.vp-logo-tagline {
    margin-top: 2px;

    color: var(--vp-blue-light);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}

.vp-nav {
    margin-left: auto;
}

.vp-primary-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vp-primary-menu > li {
    position: relative;
}

.vp-primary-menu > li > a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 82px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    font-weight: 600;

    transition:
        color var(--vp-transition);
}

.vp-primary-menu > li > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 20px;

    width: 100%;
    height: 2px;

    background: var(--vp-blue-light);

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform var(--vp-transition);
}

.vp-primary-menu > li > a:hover,
.vp-primary-menu > li.current-menu-item > a {
    color: #fff;
}

.vp-primary-menu > li > a:hover::after,
.vp-primary-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.vp-header-actions {
    flex: 0 0 auto;
}

.vp-header-quote {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1769e0,
            #3b98ff
        );

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 12px 30px rgba(23, 105, 224, 0.25);

    transition:
        transform var(--vp-transition),
        box-shadow var(--vp-transition);
}

.vp-header-quote:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 40px rgba(23, 105, 224, 0.35);
}

.vp-header-quote-arrow {
    font-size: 17px;

    transition:
        transform var(--vp-transition);
}

.vp-header-quote:hover .vp-header-quote-arrow {
    transform: translate(3px, -3px);
}

.vp-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;

    background: transparent;

    cursor: pointer;
}

.vp-menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    margin: 4px auto;

    background: #fff;

    transition:
        transform var(--vp-transition),
        opacity var(--vp-transition);
}

.vp-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.vp-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.vp-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.vp-hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(37, 116, 229, 0.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061333 0%,
            #0a1d46 55%,
            #061333 100%
        );

    color: #fff;
}

.vp-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent
        );

    pointer-events: none;
}

/* Hero grid is the actual content layout.
   Decorative grid lines are handled by .vp-hero::before. */

.vp-hero .vp-container {
    position: relative;
    z-index: 2;
}

.vp-hero-grid {
    display: grid;
}

.vp-hero-content {
    position: relative;
    z-index: 4;

    max-width: 720px;

    padding: 110px 0;
}

.vp-hero .vp-eyebrow {
    color: #73b9ff;
}

.vp-hero .vp-eyebrow::before {
    background: #73b9ff;
}

.vp-hero-title {
    margin: 25px 0;

    max-width: 760px;

    font-size: clamp(
        55px,
        7vw,
        100px
    );

    line-height: .94;

    letter-spacing: -5px;

    font-weight: 900;
}

.vp-hero-title span {
    display: block;

    color: #4da3ff;

    text-shadow:
        0 0 45px rgba(77,163,255,.20);
}

.vp-hero-description {
    max-width: 650px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.72);

    font-size: 18px;
    line-height: 1.8;
}

.vp-hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.vp-hero .vp-btn-secondary {
    border-color:
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.04);

    color: #fff;

    backdrop-filter: blur(10px);
}

.vp-hero .vp-btn-secondary:hover {
    border-color: #4da3ff;
}

.vp-hero-trust {
    display: flex;

    margin-top: 70px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.12);

    gap: 45px;
}

.vp-trust-item {
    display: flex;
    flex-direction: column;
}

.vp-trust-item strong {
    font-size: 15px;
    letter-spacing: .5px;
}

.vp-trust-item span {
    margin-top: 4px;

    color: rgba(255,255,255,.48);

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* HERO VISUAL / MAIN HERO LAYOUT */

.vp-hero-grid {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;
    min-height: 760px;
}

.vp-hero-visual {
    position: absolute;

    right: -80px;
    top: 50%;

    width: 610px;
    height: 610px;

    transform: translateY(-50%);
}

.vp-hero-visual-frame {
    position: relative;

    width: 100%;
    height: 100%;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23,105,224,.18),
            rgba(4,16,43,.05) 60%,
            transparent 70%
        );

    box-shadow:
        inset 0 0 100px rgba(23,105,224,.10),
        0 0 100px rgba(23,105,224,.08);

    animation:
        vpFloat 7s ease-in-out infinite;
}

.vp-hero-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(77,163,255,.35);

    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-20deg);
}

.orbit-one {
    width: 80%;
    height: 36%;

    animation:
        vpOrbit 14s linear infinite;
}

.orbit-two {
    width: 50%;
    height: 82%;

    animation:
        vpOrbitReverse 18s linear infinite;
}

.vp-hero-visual-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 190px;
    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border:
        1px solid rgba(77,163,255,.45);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23,105,224,.35),
            rgba(5,18,45,.85)
        );

    box-shadow:
        0 0 70px rgba(23,105,224,.25);
}

.vp-visual-label {
    color: rgba(255,255,255,.45);

    font-size: 8px;
    letter-spacing: 2px;
}

.vp-hero-visual-center strong {
    margin-top: 7px;

    color: #fff;

    font-size: 14px;
    letter-spacing: 1px;
}

.vp-hero-floating-card {
    position: absolute;

    display: flex;
    flex-direction: column;

    padding: 14px 18px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 12px;

    background:
        rgba(8,25,57,.78);

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.22);

    animation:
        vpFloat 5s ease-in-out infinite;
}

.vp-hero-floating-card span {
    color: #5aaaff;

    font-size: 9px;
    letter-spacing: 2px;
}

.vp-hero-floating-card strong {
    margin-top: 4px;

    font-size: 12px;
    letter-spacing: 1px;
}

.vp-card-one {
    left: 7%;
    top: 25%;
}

.vp-card-two {
    right: 4%;
    top: 18%;

    animation-delay: -2s;
}

.vp-card-three {
    right: 10%;
    bottom: 19%;

    animation-delay: -3.5s;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.vp-industries-section {
    padding: 130px 0;

    background: #fff;
}

.vp-industries-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--vp-border);

    border-left:
        1px solid var(--vp-border);
}

.vp-industry-card {
    position: relative;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    border-right:
        1px solid var(--vp-border);

    border-bottom:
        1px solid var(--vp-border);

    overflow: hidden;

    transition:
        color var(--vp-transition),
        background var(--vp-transition),
        transform var(--vp-transition);
}

.vp-industry-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            var(--vp-navy),
            var(--vp-blue)
        );

    opacity: 0;

    transform: translateY(100%);

    transition:
        opacity var(--vp-transition),
        transform var(--vp-transition);
}

.vp-industry-card:hover::before {
    opacity: 1;

    transform: translateY(0);
}

.vp-industry-card > * {
    position: relative;
    z-index: 2;
}

.vp-industry-number {
    position: absolute;

    top: 25px;
    right: 28px;

    color: var(--vp-blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    transition:
        color var(--vp-transition);
}

.vp-industry-card h3 {
    margin: 0;

    font-size: 28px;
    letter-spacing: -1px;

    transition:
        color var(--vp-transition);
}

.vp-industry-arrow {
    margin-top: 15px;

    color: var(--vp-blue);

    font-size: 20px;

    transition:
        transform var(--vp-transition),
        color var(--vp-transition);
}

.vp-industry-card:hover h3,
.vp-industry-card:hover .vp-industry-number,
.vp-industry-card:hover .vp-industry-arrow {
    color: #fff;
}

.vp-industry-card:hover .vp-industry-arrow {
    transform: translate(5px, -5px);
}


/* =========================================================
   SOLUTIONS
========================================================= */

.vp-solutions-section {
    padding: 130px 0;

    background:
        linear-gradient(
            180deg,
            #f4f7fb,
            #fff
        );
}

.vp-solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.vp-solution-card {
    position: relative;

    min-height: 370px;

    padding: 34px;

    border:
        1px solid var(--vp-border);

    border-radius: var(--vp-radius-md);

    background: #fff;

    overflow: hidden;

    transition:
        transform var(--vp-transition),
        box-shadow var(--vp-transition),
        border-color var(--vp-transition);
}

.vp-solution-card::after {
    content: "";

    position: absolute;

    right: -60px;
    bottom: -60px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(23,105,224,.07);

    transition:
        transform var(--vp-transition);
}

.vp-solution-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(23,105,224,.25);

    box-shadow:
        var(--vp-shadow);
}

.vp-solution-card:hover::after {
    transform: scale(1.5);
}

.vp-solution-number {
    color: var(--vp-blue);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.vp-solution-card h3 {
    margin: 70px 0 18px;

    font-size: 24px;
    line-height: 1.15;
}

.vp-solution-card p {
    color: var(--vp-text-light);

    font-size: 14px;
    line-height: 1.75;
}

.vp-solution-card a {
    position: absolute;

    left: 34px;
    bottom: 32px;

    color: var(--vp-blue);

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   PRODUCTS
========================================================= */

.vp-products-section {
    padding: 130px 0;

    background: #fff;
}

.vp-products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.vp-product-card {
    overflow: hidden;

    border:
        1px solid var(--vp-border);

    border-radius: var(--vp-radius-md);

    background: #fff;

    transition:
        transform var(--vp-transition),
        box-shadow var(--vp-transition);
}

.vp-product-card:hover {
    transform: translateY(-8px);

    box-shadow:
        var(--vp-shadow);
}

.vp-product-image {
    position: relative;

    height: 290px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #f2f6fb,
            #e9f1fa
        );

    overflow: hidden;
}

.vp-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .7s cubic-bezier(.22,1,.36,1);
}

.vp-product-card:hover
.vp-product-image img {
    transform: scale(1.06);
}

.vp-product-content {
    padding: 28px;
}

.vp-product-category {
    color: var(--vp-blue);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.vp-product-content h3 {
    margin: 10px 0;

    font-size: 22px;
    line-height: 1.25;
}

.vp-product-price {
    margin-bottom: 18px;

    color: var(--vp-text-light);

    font-size: 14px;
}

.vp-product-link {
    color: var(--vp-blue);

    font-size: 12px;
    font-weight: 800;
}

.vp-products-empty,
.vp-insights-empty {
    grid-column: 1 / -1;

    padding: 70px;

    border:
        1px dashed
        rgba(7,22,56,.18);

    border-radius: var(--vp-radius-md);

    text-align: center;
}

.vp-section-action {
    margin-top: 45px;

    text-align: center;
}


/* =========================================================
   ABOUT
========================================================= */

.vp-about-section {
    padding: 130px 0;

    background: var(--vp-navy);

    color: #fff;
}

.vp-about-grid {
    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.vp-about-visual {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--vp-radius-xl);

    background:
        radial-gradient(
            circle,
            rgba(77,163,255,.22),
            transparent 60%
        ),
        linear-gradient(
            135deg,
            #0b2455,
            #061333
        );

    overflow: hidden;
}

.vp-about-panel {
    width: 75%;

    padding: 45px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 22px;

    background:
        rgba(255,255,255,.04);

    backdrop-filter: blur(15px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);
}

.vp-about-panel span {
    display: block;

    margin-bottom: 40px;

    color: #66b4ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}

.vp-about-panel strong {
    display: block;

    padding: 20px 0;

    border-bottom:
        1px solid rgba(255,255,255,.10);

    font-size: 34px;
    letter-spacing: -1px;
}

.vp-about-panel strong:last-child {
    border-bottom: 0;
}

.vp-about-content .vp-eyebrow {
    color: #65b4ff;
}

.vp-about-content .vp-eyebrow::before {
    background: #65b4ff;
}

.vp-about-content h2 {
    margin: 20px 0;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;

    letter-spacing: -3px;
}

.vp-about-content h2 span {
    color: #4da3ff;
}

.vp-about-content > p {
    max-width: 650px;

    color: rgba(255,255,255,.64);

    font-size: 17px;
    line-height: 1.8;
}

.vp-benefits {
    margin-top: 50px;
}

.vp-benefit {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 22px 0;

    border-bottom:
        1px solid rgba(255,255,255,.10);
}

.vp-benefit > span {
    color: #4da3ff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;
}

.vp-benefit h3 {
    margin-bottom: 6px;

    font-size: 17px;
}

.vp-benefit p {
    margin-bottom: 0;

    color: rgba(255,255,255,.48);

    font-size: 13px;
}


/* =========================================================
   INSIGHTS
========================================================= */

.vp-insights-section {
    padding: 130px 0;

    background: #f5f8fc;
}

.vp-insights-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.vp-insight-card {
    overflow: hidden;

    border:
        1px solid var(--vp-border);

    border-radius: var(--vp-radius-md);

    background: #fff;

    transition:
        transform var(--vp-transition),
        box-shadow var(--vp-transition);
}

.vp-insight-card:hover {
    transform: translateY(-8px);

    box-shadow:
        var(--vp-shadow);
}

.vp-insight-image {
    display: block;

    height: 245px;

    overflow: hidden;

    background: #e9eff6;
}

.vp-insight-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.22,1,.36,1);
}

.vp-insight-card:hover
.vp-insight-image img {
    transform: scale(1.06);
}

.vp-insight-content {
    padding: 28px;
}

.vp-insight-content time {
    color: var(--vp-blue);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}

.vp-insight-content h3 {
    margin: 12px 0;

    font-size: 23px;
    line-height: 1.25;
}

.vp-insight-content p {
    color: var(--vp-text-light);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FAQ
========================================================= */

.vp-faq-section {
    padding: 130px 0;

    background: #fff;
}

.vp-faq-list {
    max-width: 950px;
}

.vp-faq-item {
    border-top:
        1px solid var(--vp-border);
}

.vp-faq-item:last-child {
    border-bottom:
        1px solid var(--vp-border);
}

.vp-faq-item summary {
    position: relative;

    padding: 27px 50px 27px 0;

    cursor: pointer;

    list-style: none;

    color: var(--vp-text);

    font-size: 18px;
    font-weight: 700;
}

.vp-faq-item summary::-webkit-details-marker {
    display: none;
}

.vp-faq-item summary::after {
    content: "+";

    position: absolute;

    right: 0;
    top: 24px;

    color: var(--vp-blue);

    font-size: 25px;
    font-weight: 300;

    transition:
        transform var(--vp-transition);
}

.vp-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.vp-faq-answer {
    max-width: 800px;

    padding:
        0 0 28px;
}

.vp-faq-answer p {
    margin: 0;

    color: var(--vp-text-light);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.vp-final-cta {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #071638,
            #0b2b64
        );

    color: #fff;
}

.vp-final-cta-inner {
    position: relative;

    padding: 90px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(77,163,255,.20),
            transparent 30%
        ),
        rgba(255,255,255,.03);

    overflow: hidden;

    text-align: center;
}

.vp-final-cta-inner .vp-eyebrow {
    color: #69b7ff;
}

.vp-final-cta-inner .vp-eyebrow::before {
    background: #69b7ff;
}

.vp-final-cta h2 {
    max-width: 800px;

    margin: 20px auto;

    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;

    letter-spacing: -3px;
}

.vp-final-cta h2 span {
    color: #4da3ff;
}

.vp-final-cta p {
    max-width: 600px;

    margin: 0 auto 32px;

    color: rgba(255,255,255,.62);

    font-size: 16px;
}

.vp-final-cta-actions {
    display: flex;
    justify-content: center;

    gap: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.vp-footer {
    background: #040d20;

    color: #fff;
}

.vp-footer-main {
    width: min(
        calc(100% - 48px),
        var(--vp-container)
    );

    margin-inline: auto;

    padding: 90px 0;

    display: grid;

    grid-template-columns:
        1.5fr
        .8fr
        .9fr
        1fr;

    gap: 60px;
}

.vp-footer-logo {
    display: inline-flex;
}

.vp-footer-logo-image {
    width: auto;
    max-width: 200px;
    max-height: 65px;

    object-fit: contain;
}

.vp-footer-description {
    max-width: 380px;

    margin: 25px 0;

    color: rgba(255,255,255,.45);

    font-size: 13px;
    line-height: 1.8;
}

.vp-footer-enquiry {
    color: #4da3ff;

    font-size: 13px;
    font-weight: 800;
}

.vp-footer-social {
    margin-top: 45px;
}

.vp-footer-social-label {
    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,.35);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.vp-footer-social-icons {
    display: flex;
    gap: 8px;
}

.vp-social-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    color: rgba(255,255,255,.7);

    font-size: 11px;
}

.vp-footer-heading {
    margin: 0 0 25px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.vp-footer-menu,
.vp-footer-list {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.vp-footer-menu a,
.vp-footer-list a {
    color: rgba(255,255,255,.48);

    font-size: 13px;

    transition:
        color var(--vp-transition);
}

.vp-footer-menu a:hover,
.vp-footer-list a:hover {
    color: #4da3ff;
}

.vp-footer-contact-item {
    margin-bottom: 24px;
}

.vp-footer-contact-item span {
    display: block;

    margin-bottom: 6px;

    color: rgba(255,255,255,.3);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.vp-footer-contact-item a,
.vp-footer-contact-item address {
    color: rgba(255,255,255,.72);

    font-size: 13px;

    font-style: normal;
}

.vp-footer-whatsapp {
    display: inline-flex;

    gap: 10px;

    padding: 12px 16px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 8px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.vp-footer-bottom {
    width: min(
        calc(100% - 48px),
        var(--vp-container)
    );

    margin-inline: auto;

    padding: 25px 0;

    border-top:
        1px solid rgba(255,255,255,.08);

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 30px;
}

.vp-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.3);

    font-size: 10px;
}

.vp-footer-legal {
    display: flex;
    gap: 22px;
}

.vp-footer-legal a {
    color: rgba(255,255,255,.35);

    font-size: 10px;
}

.vp-footer-credit {
    display: flex;
    justify-content: flex-end;

    gap: 5px;

    color: rgba(255,255,255,.3);

    font-size: 10px;
}

.vp-footer-credit a {
    color: #4da3ff;

    font-weight: 700;
}


/* =========================================================
   PAGE / BLOG BASE
========================================================= */

.vp-page,
.vp-single-post,
.vp-archive,
.vp-error-page {
    min-height: 60vh;
}

.vp-page-header,
.vp-archive-header {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #071638,
            #0b2b64
        );

    color: #fff;
}

.vp-page-title,
.vp-archive-title {
    margin: 18px 0 0;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1;

    letter-spacing: -3px;
}

.vp-page-body {
    max-width: 850px;

    padding: 90px 0;
}

.vp-article-content {
    max-width: 850px;

    font-size: 17px;
    line-height: 1.9;
}

.vp-article-header {
    padding: 100px 0 60px;

    background: var(--vp-bg);
}

.vp-article-title {
    max-width: 1000px;

    margin: 18px 0;

    font-size: clamp(42px, 6vw, 80px);

    line-height: 1;

    letter-spacing: -3px;
}

.vp-article-meta {
    display: flex;
    gap: 10px;

    color: var(--vp-text-light);

    font-size: 12px;
}

.vp-article-featured {
    padding: 40px 0;

    background: var(--vp-bg);
}

.vp-article-image {
    width: 100%;

    max-height: 650px;

    object-fit: cover;

    border-radius: var(--vp-radius-lg);
}

.vp-article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        320px;

    gap: 80px;

    padding: 70px 0 110px;
}

.vp-article-sidebar-box {
    position: sticky;
    top: 110px;

    padding: 30px;

    border-radius: var(--vp-radius-md);

    background:
        var(--vp-navy);

    color: #fff;
}

.vp-sidebar-label {
    color: #4da3ff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.vp-article-sidebar-box h2 {
    margin: 15px 0;

    font-size: 26px;
    line-height: 1.1;
}

.vp-article-sidebar-box p {
    color: rgba(255,255,255,.58);

    font-size: 13px;
}

.vp-sidebar-cta {
    display: inline-flex;

    gap: 8px;

    color: #4da3ff;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes vpFloat {

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

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

}

@keyframes vpOrbit {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}

@keyframes vpOrbitReverse {

    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .vp-primary-menu {
        gap: 18px;
    }

    .vp-primary-menu > li > a {
        font-size: 11px;
    }

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

    .vp-footer-main {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 900px) {

    .vp-container {
        width: calc(100% - 36px);
    }

    .vp-header {
        position: sticky;
        top: 0;
    }

    .vp-header-inner {
        width: calc(100% - 36px);

        min-height: 72px;
    }

    .vp-logo .custom-logo {
        max-width: 165px;
        max-height: 50px;
    }

    .vp-header-actions {
        display: none;
    }

    .vp-menu-toggle {
        display: block;

        position: relative;
        z-index: 1002;
    }

    .vp-nav {
        position: fixed;

        top: 72px;
        right: 0;

        z-index: 1001;

width: 100vw;
        height: calc(100vh - 72px);

        padding: 25px;

        background: var(--vp-navy);

        overflow-y: auto;

        transform: translateX(100%);

        transition:
            transform .45s cubic-bezier(.22,1,.36,1);
    }

    .vp-nav.vp-nav-open {
        transform: translateX(0);
    }

    .vp-primary-menu {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .vp-primary-menu > li > a {
        min-height: auto;

        padding: 17px 0;

        border-bottom:
            1px solid rgba(255,255,255,.08);

        font-size: 15px;
    }

    .vp-primary-menu > li > a::after {
        display: none;
    }


    /* HERO */

    .vp-hero {
        min-height: auto;
    }

    .vp-hero-grid {
        display: block;
        min-height: auto;
    }

    .vp-hero-content {
        max-width: none;

        padding: 100px 0 60px;
    }

    .vp-hero-title {
        letter-spacing: -3px;
    }

    .vp-hero-description {
        font-size: 16px;
    }

    .vp-hero-trust {
        margin-top: 45px;

        gap: 25px;
    }

    .vp-hero-visual {
        position: relative;

        right: auto;
        top: auto;

        display: block;
        width: min(560px, 100%);
        height: min(560px, 100vw);
        min-height: 320px;

        margin:
            0 auto 80px;

        transform: none;
        z-index: 5;
    }


    /* SECTIONS */

    .vp-industries-section,
    .vp-solutions-section,
    .vp-products-section,
    .vp-about-section,
    .vp-insights-section,
    .vp-faq-section {
        padding: 90px 0;
    }

    .vp-section-heading {
        margin-bottom: 45px;
    }

    .vp-section-heading-split {
        display: block;
    }

    .vp-section-heading-split > p {
        margin-top: 25px;
    }

    .vp-industries-grid {
    grid-template-columns: 1fr;
}
.vp-industry-card {
    min-height: 220px;
}

    .vp-products-grid,
    .vp-insights-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .vp-about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .vp-about-visual {
        min-height: 450px;
    }

    .vp-final-cta-inner {
        padding: 65px 35px;
    }

    .vp-footer-main {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 50px;
    }

    .vp-footer-bottom {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .vp-footer-legal,
    .vp-footer-credit {
        justify-content: center;
    }

    .vp-article-layout {
        grid-template-columns: 1fr;
    }

    .vp-article-sidebar-box {
        position: static;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .vp-container {
        width: calc(100% - 28px);
    }

    .vp-header-inner {
        width: calc(100% - 28px);
    }

    .vp-logo .custom-logo {
        max-width: 145px;
        max-height: 45px;
    }

    .vp-hero-content {
        padding-top: 75px;
    }

    .vp-hero-title {
        font-size: clamp(48px, 14vw, 70px);

        letter-spacing: -2.5px;
    }

    .vp-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .vp-hero-actions .vp-btn {
        width: 100%;
    }

    .vp-hero-trust {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }

    .vp-hero-visual {
        display: block;
        width: 100%;
        height: 360px;
        min-height: 360px;

        margin-bottom: 60px;
    }

    .vp-hero-visual-center {
        width: 130px;
        height: 130px;
    }

    .vp-hero-floating-card {
        padding: 10px 13px;
    }

    .vp-hero-floating-card strong {
        font-size: 10px;
    }

    .vp-card-one {
        left: 0;
    }

    .vp-card-two {
        right: 0;
    }

    .vp-card-three {
        right: 4%;
    }

    .vp-section-heading h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .vp-industries-grid {
        grid-template-columns: 1fr;
    }

    .vp-solutions-grid,
    .vp-products-grid,
    .vp-insights-grid {
        grid-template-columns: 1fr;
    }

    .vp-industry-card {
        min-height: 220px;
    }

    .vp-solution-card {
        min-height: 340px;
    }

    .vp-about-visual {
        min-height: 360px;
    }

    .vp-about-panel {
        width: 84%;

        padding: 30px;
    }

    .vp-about-panel strong {
        font-size: 26px;
    }

    .vp-final-cta {
        padding: 60px 0;
    }

    .vp-final-cta-inner {
        padding: 55px 22px;
    }

    .vp-final-cta h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .vp-final-cta-actions {
        flex-direction: column;
    }

    .vp-final-cta-actions .vp-btn {
        width: 100%;
    }

    .vp-footer-main {
        width: calc(100% - 28px);

        grid-template-columns: 1fr;

        padding: 65px 0;
    }

    .vp-footer-bottom {
        width: calc(100% - 28px);
    }

    .vp-page-header,
    .vp-archive-header {
        padding: 80px 0;
    }

    .vp-page-title,
    .vp-archive-title {
        font-size: 48px;
    }

    .vp-article-title {
        font-size: 45px;

        letter-spacing: -2px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}
/* =====================================================
   INDUSTRY CARDS — FINAL IMAGE DESIGN
===================================================== */

.vp-industry-card {
    position: relative !important;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;

    overflow: hidden !important;

    color: #fff !important;
}

/* Remove old card overlay */
.vp-industry-card::before {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(3, 18, 50, 0.15) 0%,
            rgba(3, 18, 50, 0.30) 40%,
            rgba(3, 18, 50, 0.82) 100%
        ) !important;

    opacity: 1 !important;

    transform: none !important;

    z-index: 1 !important;
}

/* Content above image */
.vp-industry-card .vp-industry-number,
.vp-industry-card h3,
.vp-industry-card .vp-industry-arrow {
    position: relative !important;
    z-index: 3 !important;

    color: #fff !important;
}

/* Number */
.vp-industry-card .vp-industry-number {
    color: rgba(255,255,255,0.85) !important;
}

/* Heading */
.vp-industry-card h3 {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35) !important;
}

/* Arrow */
.vp-industry-card .vp-industry-arrow {
    color: #fff !important;
}

/* Hover */
.vp-industry-card:hover {
    background-position: center !important;
}

.vp-industry-card:hover::before {
    background:
        linear-gradient(
            180deg,
            rgba(3, 18, 50, 0.10),
            rgba(3, 18, 50, 0.72)
        ) !important;
}

/* Mobile */
@media (max-width: 900px) {

    .vp-industry-card {
        min-height: 360px !important;
        background-position: center !important;
    }

}
/* =====================================================
   INDUSTRY CARD — CLICK CTA
===================================================== */

.vp-industry-card {
    cursor: pointer !important;
}

/* Make content sit nicely at bottom */
.vp-industry-card h3 {
    margin-bottom: 12px !important;
}

/* Visible click indication */
.vp-industry-card::after {
    content: "Explore Industry  ↗";

    position: absolute;
    left: 30px;
    bottom: 28px;

    z-index: 4;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;

    background: rgba(5,20,55,.35);

    color: #fff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;

    backdrop-filter: blur(6px);

    transition: all .3s ease;
}

/* Hover */
.vp-industry-card:hover::after {
    background: #2f8cff;
    border-color: #2f8cff;

    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 900px) {

    .vp-industry-card::after {
        left: 30px;
        bottom: 25px;

        font-size: 11px;
        padding: 9px 13px;
    }

}
/* =====================================================
   NDT SOLUTIONS — FINAL CARD DESIGN
===================================================== */

.vp-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.vp-solution-card {
    position: relative;

    min-height: 360px;
    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            #0b1f45,
            #07152f
        );

    border: 1px solid rgba(77,163,255,.14);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.vp-solution-card::before {
    content: "";

    position: absolute;
    width: 220px;
    height: 220px;

    top: -80px;
    right: -70px;

    border-radius: 50%;

    border: 1px solid rgba(77,163,255,.18);

    box-shadow:
        0 0 0 35px rgba(77,163,255,.035),
        0 0 0 70px rgba(77,163,255,.025);
}

.vp-solution-card:hover {
    transform: translateY(-6px);

    border-color: rgba(77,163,255,.45);

    box-shadow:
        0 18px 50px rgba(0,0,0,.25);
}

.vp-solution-number {
    position: absolute;

    top: 28px;
    left: 32px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255,255,255,.45);
}

.vp-solution-icon {
    position: absolute;

    top: 28px;
    right: 30px;

    min-width: 48px;
    height: 48px;

    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(77,163,255,.35);

    color: #4da3ff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.vp-solution-card h3 {
    position: relative;

    margin: 0 0 14px;

    color: #fff;

    font-size: 26px;
    line-height: 1.15;
}

.vp-solution-card p {
    position: relative;

    margin: 0 0 24px;

    max-width: 480px;

    color: rgba(255,255,255,.62);

    font-size: 14px;
    line-height: 1.7;
}

.vp-solution-card a {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    color: #4da3ff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .6px;

    text-decoration: none;
}

.vp-solution-card a span {
    transition: transform .25s ease;
}

.vp-solution-card:hover a span {
    transform: translate(3px,-3px);
}


/* MOBILE */

@media (max-width: 900px) {

    .vp-solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vp-solution-card {
        min-height: 330px;
        padding: 30px;
    }

    .vp-solution-card h3 {
        font-size: 23px;
    }

}

/* =====================================================
   VISIONPRO NDT
   PRODUCTS CATALOGUE PAGE
===================================================== */

.vp-products-page {
    background: #f5f8fc;
    color: #071a45;
}

/* -----------------------------------------------------
   PRODUCTS HERO
----------------------------------------------------- */

.vp-products-hero {
    position: relative;
    padding: 120px 0 105px;
    background:
        radial-gradient(circle at 85% 25%, rgba(47,140,255,.16), transparent 35%),
        linear-gradient(135deg, #061637 0%, #0a2558 55%, #071a45 100%);
    overflow: hidden;
}

.vp-products-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    bottom: -220px;
    border: 1px solid rgba(77,163,255,.25);
    border-radius: 50%;
}

.vp-products-hero .vp-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.vp-products-hero .vp-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #63aaff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-products-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.vp-products-hero h1 span {
    display: block;
    color: #63aaff;
}

.vp-products-hero p {
    max-width: 680px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.8;
}


/* -----------------------------------------------------
   CATALOGUE SECTION
----------------------------------------------------- */

.vp-products-catalogue {
    padding: 100px 0 120px;
}

.vp-products-catalogue .vp-container {
    max-width: 1200px;
}


/* -----------------------------------------------------
   CATALOGUE HEADER
----------------------------------------------------- */

.vp-catalogue-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.vp-catalogue-header .vp-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #2f8cff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-catalogue-header h2 {
    margin: 0;
    color: #071a45;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
}

.vp-catalogue-header p {
    max-width: 390px;
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}


/* -----------------------------------------------------
   PRODUCT GRID
----------------------------------------------------- */

.vp-catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* -----------------------------------------------------
   PRODUCT CARD
----------------------------------------------------- */

.vp-catalogue-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4eaf2;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(7,26,69,.07);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.vp-catalogue-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47,140,255,.35);
    box-shadow: 0 22px 50px rgba(7,26,69,.14);
}


/* -----------------------------------------------------
   PRODUCT IMAGE
----------------------------------------------------- */

.vp-catalogue-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 290px;
    overflow: hidden;
    background:
        radial-gradient(circle at center, #ffffff 0%, #eef4fa 100%);
}

.vp-catalogue-image::after {
    content: "VIEW EQUIPMENT  ↗";
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(47,140,255,.25);
    border-radius: 30px;
    background: rgba(255,255,255,.9);
    color: #1258a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .7px;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
}

.vp-catalogue-card:hover .vp-catalogue-image::after {
    opacity: 1;
    transform: translateY(0);
}

.vp-catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25px;
    transition: transform .45s ease;
}

.vp-catalogue-card:hover .vp-catalogue-image img {
    transform: scale(1.04);
}


/* -----------------------------------------------------
   PLACEHOLDER
----------------------------------------------------- */

.vp-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(47,140,255,.25);
    border-radius: 50%;
    background: #f5f9ff;
}

.vp-product-placeholder span {
    color: #2f8cff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}


/* -----------------------------------------------------
   PRODUCT CONTENT
----------------------------------------------------- */

.vp-catalogue-content {
    padding: 28px 28px 30px;
}

.vp-product-category {
    display: inline-block;
    margin-bottom: 12px;
    color: #2f8cff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.vp-catalogue-content h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.vp-catalogue-content h3 a {
    color: #071a45;
    text-decoration: none;
    transition: color .25s ease;
}

.vp-catalogue-content h3 a:hover {
    color: #2f8cff;
}

.vp-product-excerpt {
    min-height: 48px;
    margin: 14px 0 22px;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}


/* -----------------------------------------------------
   VIEW EQUIPMENT LINK
----------------------------------------------------- */

.vp-catalogue-content .vp-product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #1258a5;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: gap .25s ease, color .25s ease;
}

.vp-catalogue-content .vp-product-link span {
    font-size: 17px;
}

.vp-catalogue-content .vp-product-link:hover {
    gap: 14px;
    color: #2f8cff;
}


/* -----------------------------------------------------
   EMPTY CATALOGUE
----------------------------------------------------- */

.vp-products-empty {
    max-width: 760px;
    margin: 20px auto 0;
    padding: 70px 45px;
    text-align: center;
    background: #fff;
    border: 1px solid #e1e8f0;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(7,26,69,.07);
}

.vp-products-empty .vp-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #2f8cff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-products-empty h2 {
    margin: 0 0 15px;
    color: #071a45;
    font-size: 34px;
}

.vp-products-empty p {
    max-width: 580px;
    margin: 0 auto 28px;
    color: #667085;
    line-height: 1.7;
}


/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 900px) {

    .vp-products-hero {
        padding: 85px 0 75px;
    }

    .vp-products-hero h1 {
        font-size: 46px;
        letter-spacing: -1.5px;
    }

    .vp-products-catalogue {
        padding: 70px 0 85px;
    }

    .vp-catalogue-header {
        display: block;
        margin-bottom: 35px;
    }

    .vp-catalogue-header p {
        margin-top: 15px;
    }

    .vp-catalogue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .vp-catalogue-image {
        height: 240px;
    }

    .vp-catalogue-content {
        padding: 22px;
    }

}

@media (max-width: 600px) {

    .vp-products-hero {
        padding: 70px 0 65px;
    }

    .vp-products-hero h1 {
        font-size: 38px;
    }

    .vp-products-hero p {
        font-size: 15px;
    }

    .vp-products-catalogue {
        padding: 55px 0 70px;
    }

    .vp-catalogue-header h2 {
        font-size: 34px;
    }

    .vp-catalogue-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vp-catalogue-image {
        height: 270px;
    }

    .vp-catalogue-image::after {
        opacity: 1;
        transform: none;
    }

    .vp-product-excerpt {
        min-height: auto;
    }

    .vp-products-empty {
        padding: 50px 25px;
    }

    .vp-products-empty h2 {
        font-size: 28px;
    }

}
/* =====================================================
   VISIONPRO NDT
   SINGLE PRODUCT PAGE
===================================================== */

.vp-single-product-page {
    background: #f5f8fc;
    color: #071a45;
}

/* -----------------------------------------------------
   PRODUCT DETAIL
----------------------------------------------------- */

.vp-product-detail {
    padding: 110px 0 100px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(47,140,255,.10),
            transparent 32%
        ),
        #f5f8fc;
}

.vp-product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 75px;
    align-items: center;
}


/* -----------------------------------------------------
   PRODUCT IMAGE
----------------------------------------------------- */

.vp-product-detail-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    padding: 45px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #edf4fb 100%
        );
    border: 1px solid #dfe7f1;
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(7,26,69,.10);
}

.vp-product-detail-image::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(47,140,255,.15);
    border-radius: 50%;
}

.vp-product-detail-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}


/* -----------------------------------------------------
   PLACEHOLDER
----------------------------------------------------- */

.vp-product-detail-placeholder {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(47,140,255,.25);
    border-radius: 50%;
    background: #f5f9ff;
}

.vp-product-detail-placeholder span {
    color: #2f8cff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
}


/* -----------------------------------------------------
   PRODUCT CONTENT
----------------------------------------------------- */

.vp-product-detail-content {
    max-width: 600px;
}

.vp-product-detail-content .vp-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #2f8cff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-product-detail-content h1 {
    margin: 0 0 25px;
    color: #071a45;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.vp-product-short-description {
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}

.vp-product-short-description p {
    margin: 0 0 12px;
}


/* -----------------------------------------------------
   ENQUIRY BOX
----------------------------------------------------- */

.vp-product-enquiry-box {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 35px;
    padding: 28px;
    background: #071a45;
    border: 1px solid rgba(47,140,255,.25);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(7,26,69,.15);
}

.vp-product-enquiry-box > span {
    color: #63aaff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.vp-product-enquiry-box strong {
    max-width: 500px;
    color: #fff;
    font-size: 17px;
    line-height: 1.55;
}

.vp-product-enquiry-box .vp-btn {
    align-self: flex-start;
    margin-top: 8px;
}


/* -----------------------------------------------------
   DESCRIPTION
----------------------------------------------------- */

.vp-product-description-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #e4eaf2;
}

.vp-product-description {
    max-width: 900px;
}

.vp-product-description .vp-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #2f8cff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-product-description h2 {
    margin: 0 0 35px;
    color: #071a45;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;
}

.vp-product-description h2 span {
    color: #2f8cff;
}

.vp-product-description-content {
    color: #667085;
    font-size: 16px;
    line-height: 1.85;
}

.vp-product-description-content h2,
.vp-product-description-content h3,
.vp-product-description-content h4 {
    color: #071a45;
}

.vp-product-description-content strong {
    color: #071a45;
}

.vp-product-description-content ul,
.vp-product-description-content ol {
    margin: 20px 0;
    padding-left: 22px;
}


/* -----------------------------------------------------
   FINAL CTA
----------------------------------------------------- */

.vp-product-final-cta {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(47,140,255,.18),
            transparent 35%
        ),
        #061637;
}

.vp-product-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.vp-product-final-cta .vp-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #63aaff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-product-final-cta h2 {
    max-width: 700px;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
}

.vp-product-final-cta h2 span {
    display: block;
    color: #63aaff;
}

.vp-product-final-cta p {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
}

.vp-product-final-cta .vp-btn {
    flex-shrink: 0;
}


/* -----------------------------------------------------
   MOBILE
----------------------------------------------------- */

@media (max-width: 900px) {

    .vp-product-detail {
        padding: 75px 0 70px;
    }

    .vp-product-detail-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .vp-product-detail-image {
        min-height: 420px;
    }

    .vp-product-detail-content {
        max-width: none;
    }

    .vp-product-final-cta-inner {
        display: block;
    }

    .vp-product-final-cta .vp-btn {
        display: inline-flex;
        margin-top: 28px;
    }

}

@media (max-width: 600px) {

    .vp-product-detail {
        padding: 55px 0 60px;
    }

    .vp-product-detail-image {
        min-height: 330px;
        padding: 25px;
        border-radius: 18px;
    }

    .vp-product-detail-image img {
        max-height: 280px;
    }

    .vp-product-detail-content h1 {
        font-size: 38px;
    }

    .vp-product-short-description {
        font-size: 15px;
    }

    .vp-product-enquiry-box {
        padding: 23px;
    }

    .vp-product-description-section {
        padding: 65px 0;
    }

    .vp-product-final-cta {
        padding: 65px 0;
    }

    .vp-product-final-cta h2 {
        font-size: 34px;
    }

}

/* =====================================================
   PRODUCT PAGE - TWO CTA BUTTONS
===================================================== */

.vp-product-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.vp-product-buttons .vp-btn {
    margin-top: 0 !important;
}

.vp-btn-expert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 10px;
    background: transparent;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all .3s ease;
}

.vp-btn-expert:hover {
    background: #fff;
    color: #071a45 !important;
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {

    .vp-product-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .vp-product-buttons .vp-btn {
        width: 100%;
    }

}

/* =====================================================
   PRODUCT GALLERY + RELATED PRODUCTS
===================================================== */

/* GALLERY */

.vp-product-detail-gallery {
    width: 100%;
}

.vp-product-detail-gallery .vp-product-detail-image {
    margin: 0;
}

.vp-product-gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.vp-product-gallery-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding: 6px;
    background: #fff;
    border: 1px solid #dfe7f1;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all .25s ease;
}

.vp-product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vp-product-gallery-thumb:hover,
.vp-product-gallery-thumb.active {
    border-color: #2f8cff;
    box-shadow: 0 5px 18px rgba(47,140,255,.16);
}


/* RELATED PRODUCTS */

.vp-related-products-section {
    padding: 100px 0;
    background: #f5f8fc;
    border-top: 1px solid #e4eaf2;
}

.vp-related-heading {
    max-width: 700px;
    margin-bottom: 40px;
}

.vp-related-heading .vp-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #2f8cff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-related-heading h2 {
    margin: 0 0 15px;
    color: #071a45;
    font-size: clamp(36px, 4vw, 50px);
}

.vp-related-heading h2 span {
    color: #2f8cff;
}

.vp-related-heading p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.vp-related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vp-related-product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e9f1;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7,26,69,.06);
    transition: all .3s ease;
}

.vp-related-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(7,26,69,.12);
    border-color: rgba(47,140,255,.35);
}

.vp-related-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 20px;
    background: #f7faff;
}

.vp-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vp-related-product-content {
    padding: 22px;
}

.vp-related-product-content h3 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.35;
}

.vp-related-product-content h3 a {
    color: #071a45;
    text-decoration: none;
}

.vp-related-product-content h3 a:hover {
    color: #2f8cff;
}


/* MOBILE */

@media (max-width: 900px) {

    .vp-related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .vp-product-gallery-thumbnails {
        gap: 8px;
    }

    .vp-product-gallery-thumb {
        width: 70px;
        height: 70px;
    }

    .vp-related-products-section {
        padding: 65px 0;
    }

    .vp-related-products-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================================
   FINAL PRODUCT LAYOUT
===================================================== */

/* SHOP PAGE — 2 PRODUCTS PER ROW */

.vp-catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}


/* RELATED PRODUCTS — DESKTOP */

.vp-related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    /* SHOP PAGE — 2 PRODUCTS IN ONE ROW */

    .vp-catalogue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .vp-catalogue-image {
        height: 180px !important;
    }

    .vp-catalogue-content {
        padding: 16px !important;
    }

    .vp-catalogue-content h3 {
        font-size: 16px !important;
    }

    .vp-product-excerpt {
        font-size: 12px !important;
    }


    /* RELATED PRODUCTS — HORIZONTAL SWIPE */

    .vp-related-products-grid {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 14px !important;
        padding: 5px 2px 15px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .vp-related-products-grid::-webkit-scrollbar {
        display: none;
    }


    /* EXACTLY 2 PRODUCTS VISIBLE */

    .vp-related-product-card {
        flex: 0 0 calc(50% - 7px) !important;
        width: calc(50% - 7px) !important;
        min-width: calc(50% - 7px) !important;
        scroll-snap-align: start;
    }

    .vp-related-product-image {
        height: 150px !important;
        padding: 12px !important;
    }

    .vp-related-product-content {
        padding: 14px !important;
    }

    .vp-related-product-content h3 {
        font-size: 15px !important;
    }

    .vp-related-product-content .vp-product-link {
        font-size: 11px !important;
    }

}
/* Remove View Equipment badge from product image */

.vp-catalogue-image::after {
    display: none !important;
}

/* =====================================================
   HOME PAGE — FEATURED PRODUCTS MOBILE CAROUSEL
===================================================== */

@media (max-width: 600px) {

    /* Compact Featured Products Section */

    .vp-products-section {
        padding: 45px 0 50px !important;
    }


    /* Smaller Heading Area */

    .vp-products-section .vp-section-heading {
        margin-bottom: 25px !important;
    }

    .vp-products-section .vp-section-heading h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
        margin-bottom: 12px !important;
    }

    .vp-products-section .vp-section-heading p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin: 0 !important;
    }


    /* 2 Products + Horizontal Swipe */

    .vp-products-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;

        gap: 12px !important;
        padding: 3px 2px 12px !important;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .vp-products-grid::-webkit-scrollbar {
        display: none;
    }


    /* EXACTLY 2 PRODUCTS VISIBLE */

    .vp-product-card {
        flex: 0 0 calc(50% - 6px) !important;
        width: calc(50% - 6px) !important;
        min-width: calc(50% - 6px) !important;

        scroll-snap-align: start;

        border-radius: 14px !important;
    }


    /* Smaller Product Image */

    .vp-product-image {
        height: 155px !important;
        min-height: 155px !important;
    }

    .vp-product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 12px !important;
    }


    /* Smaller Product Content */

    .vp-product-content {
        padding: 15px !important;
    }

    .vp-product-category {
        font-size: 9px !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
    }

    .vp-product-content h3 {
        font-size: 16px !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
    }

    .vp-product-link {
        font-size: 11px !important;
    }


    /* Hide Price Completely */

    .vp-product-price {
        display: none !important;
    }


    /* Smaller View All Button */

    .vp-products-section .vp-section-action {
        margin-top: 22px !important;
    }

}

/* =====================================================
   PRODUCT CATEGORY PAGE
===================================================== */

.vp-category-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 125px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(47,140,255,.16),
            transparent 35%
        ),
        #071f55;
    color: #fff;
}

.vp-category-hero-inner {
    max-width: 850px;
}

.vp-category-hero h1 {
    margin: 15px 0 20px;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -2px;
}

.vp-category-hero h1 span {
    display: block;
    color: #62a8ff;
}

.vp-category-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}


/* PRODUCTS */

.vp-category-products {
    padding: 90px 0;
    background: #f5f8fc;
}

.vp-category-description {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
    color: #667085;
    line-height: 1.7;
}

.vp-category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vp-category-product-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e8f0;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(7,26,69,.06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vp-category-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7,26,69,.12);
}

.vp-category-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    padding: 25px;
    background: #f7faff;
}

.vp-category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vp-category-product-content {
    padding: 24px;
}

.vp-category-product-content h2 {
    margin: 10px 0 22px;
    font-size: 21px;
    line-height: 1.3;
}

.vp-category-product-content h2 a {
    color: #071a45;
    text-decoration: none;
}

.vp-category-product-content h2 a:hover {
    color: #267fe8;
}


/* EMPTY CATEGORY */

.vp-category-empty {
    max-width: 850px;
    margin: 0 auto;
    padding: 70px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #dfe7f1;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(7,26,69,.07);
}

.vp-category-empty h2 {
    margin: 15px 0;
    color: #071a45;
    font-size: 42px;
}

.vp-category-empty h2 span {
    color: #2f8cff;
}

.vp-category-empty p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #667085;
    line-height: 1.7;
}


/* PAGINATION */

.vp-category-pagination {
    margin-top: 50px;
    text-align: center;
}

.vp-category-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 4px;
    padding: 0 12px;
    color: #071a45;
    background: #fff;
    border: 1px solid #dfe7f1;
    border-radius: 8px;
    text-decoration: none;
}

.vp-category-pagination .current,
.vp-category-pagination .page-numbers:hover {
    color: #fff;
    background: #2f8cff;
    border-color: #2f8cff;
}


/* FINAL CTA */

.vp-category-final-cta {
    padding: 90px 0;
    background: #071a45;
    color: #fff;
}

.vp-category-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.vp-category-final-cta-inner h2 {
    max-width: 720px;
    margin: 15px 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
}

.vp-category-final-cta-inner h2 span {
    color: #62a8ff;
}

.vp-category-final-cta-inner p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.vp-category-final-cta-inner .vp-product-buttons {
    flex-shrink: 0;
}


/* MOBILE */

@media (max-width: 900px) {

    .vp-category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vp-category-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 600px) {

    .vp-category-hero {
        padding: 75px 0 80px;
    }

    .vp-category-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .vp-category-hero p {
        font-size: 15px;
    }

    .vp-category-products {
        padding: 55px 0;
    }

    .vp-category-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vp-category-product-image {
        height: 160px;
        padding: 12px;
    }

    .vp-category-product-content {
        padding: 15px;
    }

    .vp-category-product-content h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .vp-category-product-content .vp-product-link {
        font-size: 11px;
    }

    .vp-category-empty {
        padding: 45px 20px;
    }

    .vp-category-empty h2 {
        font-size: 32px;
    }

    .vp-category-final-cta {
        padding: 60px 0;
    }

    .vp-category-final-cta-inner h2 {
        font-size: 34px;
    }

    .vp-category-final-cta-inner .vp-product-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

}

/* =====================================================
   RELATED PRODUCTS — HORIZONTAL SLIDER
===================================================== */

.vp-related-slider {
    display: grid !important;

    grid-template-columns: none !important;
    grid-template-rows: 1fr !important;

    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 72px) / 4) !important;

    gap: 24px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;

    padding-bottom: 8px !important;

    scrollbar-width: none !important;

    -webkit-overflow-scrolling: touch !important;
}

.vp-related-slider::-webkit-scrollbar {
    display: none !important;
}

.vp-related-slider .vp-related-product-card {
    min-width: 0 !important;
    width: 100% !important;

    scroll-snap-align: start !important;
}


/* =====================================================
   MOBILE — 2 PRODUCTS VISIBLE
===================================================== */

@media (max-width: 900px) {

    .vp-related-slider {
        grid-auto-columns: calc((100% - 14px) / 2) !important;

        gap: 14px !important;

        overflow-x: auto !important;

        scroll-snap-type: x mandatory !important;
    }

    .vp-related-slider .vp-related-product-card {
        width: 100% !important;
    }

}
/* =====================================================
   SHOP PAGE — PRODUCT CARDS
===================================================== */

/* Hide product short description on Shop page */
body.woocommerce-shop .vp-product-card p {
    display: none !important;
}

body.woocommerce-shop .vp-product-card .vp-product-description,
body.woocommerce-shop .vp-product-card .vp-product-excerpt {
    display: none !important;
}


/* Product image area */
body.woocommerce-shop .vp-product-image {
    width: 100% !important;
    height: 230px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

body.woocommerce-shop .vp-product-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;
    display: block !important;
}


/* Mobile */
@media (max-width: 900px) {

    body.woocommerce-shop .vp-product-image {
        height: 145px !important;
    }

    body.woocommerce-shop .vp-product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

}
/* =====================================================
   SHOP PAGE — 4 PRODUCTS DESKTOP
===================================================== */

@media (min-width: 901px) {

    .vp-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    .vp-product-card {
        width: 100% !important;
        min-width: 0 !important;
    }

}


/* =====================================================
   SHOP PAGE — 2 PRODUCTS MOBILE
===================================================== */

@media (max-width: 900px) {

    .vp-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .vp-product-card {
        width: 100% !important;
        min-width: 0 !important;
    }

}
/* =====================================================
   SHOP PAGE — FINAL PRODUCT GRID
===================================================== */

/* DESKTOP — 4 PRODUCTS */
@media (min-width: 901px) {

    body.woocommerce-shop .vp-products-grid,
    body.post-type-archive-product .vp-products-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
    }

    body.woocommerce-shop .vp-product-card,
    body.post-type-archive-product .vp-product-card {
        width: 100% !important;
        max-width: none !important;
    }

    /* WooCommerce default grid, if active */
    body.woocommerce-shop ul.products,
    body.post-type-archive-product ul.products {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    body.woocommerce-shop ul.products::before,
    body.woocommerce-shop ul.products::after,
    body.post-type-archive-product ul.products::before,
    body.post-type-archive-product ul.products::after {
        display: none !important;
    }

    body.woocommerce-shop ul.products li.product,
    body.post-type-archive-product ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
}


/* MOBILE — 2 PRODUCTS */
@media (max-width: 900px) {

    body.woocommerce-shop .vp-products-grid,
    body.post-type-archive-product .vp-products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    body.woocommerce-shop .vp-product-card,
    body.post-type-archive-product .vp-product-card {
        width: 100% !important;
        max-width: none !important;
    }

    body.woocommerce-shop ul.products,
    body.post-type-archive-product ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    body.woocommerce-shop ul.products li.product,
    body.post-type-archive-product ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }
}
/* =====================================================
   SHOP CATALOGUE — FINAL GRID
===================================================== */

.vp-shop-grid-final {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.vp-shop-grid-final .vp-catalogue-card {
    width: 100% !important;
    min-width: 0 !important;
}


/* PRODUCT IMAGE */

.vp-shop-grid-final .vp-catalogue-image {
    width: 100% !important;
    height: 230px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

.vp-shop-grid-final .vp-catalogue-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
}


/* MOBILE — 2 PRODUCTS */

@media (max-width: 900px) {

    .vp-shop-grid-final {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .vp-shop-grid-final .vp-catalogue-image {
        height: 145px !important;
    }

}
/* =====================================================
   SHOP PRODUCT IMAGE - FULL AREA
===================================================== */

.vp-catalogue-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 300px !important;
    padding: 25px !important;
    overflow: hidden !important;
}

.vp-catalogue-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

/* Mobile */
@media (max-width: 900px) {

    .vp-catalogue-image {
        height: 190px !important;
        padding: 12px !important;
    }

    .vp-catalogue-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

}
/* =====================================================
   WOOCOMMERCE SHOP - PRODUCT IMAGE SIZE
===================================================== */

.vp-catalogue-image {
    overflow: hidden !important;
}

.vp-catalogue-image img {
    transform: scale(1.75) !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Mobile */
@media (max-width: 900px) {

    .vp-catalogue-image img {
        transform: scale(1.75) !important;
    }

}
/* =====================================================
   HOME PAGE - FEATURED PRODUCT IMAGES
===================================================== */

.vp-product-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.vp-product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    transform: scale(1.65) !important;
    display: block !important;
}

/* Mobile */
@media (max-width: 900px) {

    .vp-product-image img {
        transform: scale(1.65) !important;
    }

}
/* =====================================================
   BLOG PAGE
===================================================== */

.vp-blog-page {
    background: #f4f7fb;
}

/* BLOG HERO */

.vp-blog-hero {
    background: #071d4d;
    padding: 110px 0 100px;
    color: #fff;
}

.vp-blog-hero .vp-eyebrow {
    color: #4da3ff;
}

.vp-blog-hero h1 {
    max-width: 900px;
    margin: 20px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
    color: #fff;
}

.vp-blog-hero h1 span {
    color: #5ca8ff;
}

.vp-blog-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.8;
}


/* BLOG SECTION */

.vp-blog-section {
    padding: 90px 0;
}

.vp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* BLOG CARD */

.vp-blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce5f0;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(7,29,77,.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vp-blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(7,29,77,.13);
}


/* IMAGE */

.vp-blog-image {
    display: block;
    height: 250px;
    overflow: hidden;
    background: #eaf1f8;
}

.vp-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.vp-blog-card:hover .vp-blog-image img {
    transform: scale(1.05);
}

.vp-blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071d4d;
    color: #5ca8ff;
    font-size: 32px;
    font-weight: 800;
}


/* CONTENT */

.vp-blog-content {
    padding: 28px;
}

.vp-blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
}

.vp-blog-category {
    color: #1677ed;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vp-blog-date {
    color: #7b8ca5;
}

.vp-blog-content h2 {
    margin: 0 0 15px;
    font-size: 23px;
    line-height: 1.25;
}

.vp-blog-content h2 a {
    color: #071d4d;
    text-decoration: none;
}

.vp-blog-content h2 a:hover {
    color: #1677ed;
}

.vp-blog-content p {
    margin: 0 0 22px;
    color: #63758e;
    font-size: 15px;
    line-height: 1.7;
}

.vp-blog-link {
    color: #1677ed;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.vp-blog-link span {
    margin-left: 5px;
}


/* PAGINATION */

.vp-blog-pagination {
    margin-top: 55px;
    text-align: center;
}

.vp-blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vp-blog-pagination a,
.vp-blog-pagination span {
    padding: 10px 16px;
    border: 1px solid #d8e2ef;
    border-radius: 10px;
    background: #fff;
    color: #071d4d;
    text-decoration: none;
}

.vp-blog-pagination .current {
    background: #1677ed;
    border-color: #1677ed;
    color: #fff;
}


/* EMPTY */

.vp-blog-empty {
    padding: 80px 30px;
    background: #fff;
    border: 1px solid #dce5f0;
    border-radius: 22px;
    text-align: center;
}

.vp-blog-empty h2 {
    margin: 15px 0;
    color: #071d4d;
}

.vp-blog-empty p {
    color: #63758e;
}


/* FINAL CTA */

.vp-blog-final-cta {
    padding: 90px 0;
    background: #071d4d;
    color: #fff;
}

.vp-blog-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.vp-blog-final-cta h2 {
    max-width: 700px;
    margin: 18px 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
}

.vp-blog-final-cta h2 span {
    color: #5ca8ff;
}

.vp-blog-final-cta p {
    max-width: 650px;
    color: rgba(255,255,255,.75);
}

.vp-blog-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


/* MOBILE */

@media (max-width: 900px) {

    .vp-blog-hero {
        padding: 75px 0 70px;
    }

    .vp-blog-hero h1 {
        font-size: 43px;
    }

    .vp-blog-section {
        padding: 55px 0;
    }

    .vp-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .vp-blog-image {
        height: 190px;
    }

    .vp-blog-content {
        padding: 20px;
    }

    .vp-blog-content h2 {
        font-size: 19px;
    }

    .vp-blog-content p {
        font-size: 14px;
    }

    .vp-blog-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .vp-blog-grid {
        grid-template-columns: 1fr;
    }

    .vp-blog-image {
        height: 220px;
    }

    .vp-blog-hero h1 {
        font-size: 38px;
    }

    .vp-blog-hero p {
        font-size: 16px;
    }

    .vp-blog-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .vp-blog-cta-buttons .vp-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =====================================================
   HOME PAGE — INSIGHTS / ARTICLES
===================================================== */

.vp-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* ARTICLE CARD */

.vp-insight-card {
    min-width: 0;
    overflow: hidden;
}


/* IMAGE */

.vp-insight-image {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.vp-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* MOBILE */

@media (max-width: 900px) {

    .vp-insights-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 12px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .vp-insights-grid::-webkit-scrollbar {
        display: none;
    }

    .vp-insight-card {
        flex: 0 0 calc(50% - 8px);
        scroll-snap-align: start;
    }

    .vp-insight-image {
        height: 180px;
    }

}


/* SMALL MOBILE */

@media (max-width: 600px) {

    .vp-insights-grid {
        gap: 14px;
    }

    .vp-insight-card {
        flex: 0 0 calc(50% - 7px);
    }

    .vp-insight-image {
        height: 160px;
    }

}
/* =====================================================
   FIX — HOME BLOG / INSIGHTS MOBILE
===================================================== */

@media (max-width: 900px) {

    .vp-insights-grid {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        gap: 16px !important;
        padding-bottom: 12px !important;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .vp-insights-grid::-webkit-scrollbar {
        display: none;
    }

    /* Normally 2 cards visible */
    .vp-insight-card {
        flex: 0 0 calc(50% - 8px) !important;
        width: calc(50% - 8px) !important;
        min-width: calc(50% - 8px) !important;
        scroll-snap-align: start;
    }

    /* If only ONE article exists, use full width */
    .vp-insights-grid .vp-insight-card:only-child {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
    }

    .vp-insight-image {
        width: 100% !important;
        height: 220px !important;
        border-radius: 20px 20px 0 0;
    }

    .vp-insight-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .vp-insight-content {
        padding: 28px !important;
    }

    .vp-insight-content h3 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

}


/* SMALL MOBILE */

@media (max-width: 600px) {

    .vp-insights-grid .vp-insight-card:only-child {
        flex-basis: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
    }

    .vp-insight-image {
        height: 210px !important;
    }

    .vp-insight-content {
        padding: 24px !important;
    }

    .vp-insight-content h3 {
        font-size: 23px !important;
        line-height: 1.25 !important;
    }

}
/* =====================================================
   SINGLE BLOG — RELATED ARTICLES
===================================================== */

.vp-related-articles {
    padding: 90px 0;
    background: #f4f8fd;
    overflow: hidden;
}

.vp-related-heading {
    margin-bottom: 40px;
}

.vp-related-heading h2 {
    margin: 12px 0 0;
    font-size: 48px;
    line-height: 1.1;
    color: #071a45;
}

.vp-related-heading h2 span {
    color: #2f8cff;
}


/* RELATED TRACK */

.vp-related-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}


/* CARD */

.vp-related-card {
    background: #ffffff;
    border: 1px solid #dce6f2;
    border-radius: 24px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.vp-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(7, 26, 69, .12);
}


/* IMAGE */

.vp-related-image {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #eaf1f8;
}

.vp-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* PLACEHOLDER */

.vp-related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071a45;
    color: #2f8cff;
    font-size: 28px;
    font-weight: 800;
}


/* CONTENT */

.vp-related-content {
    padding: 28px;
}

.vp-related-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2f8cff;
}

.vp-related-content h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.25;
}

.vp-related-content h3 a {
    color: #071a45;
    text-decoration: none;
}

.vp-related-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    color: #1675e8;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}


/* =====================================================
   MOBILE — 2 CARDS + HORIZONTAL SWIPE
===================================================== */

@media (max-width: 900px) {

    .vp-related-articles {
        padding: 65px 0;
    }

    .vp-related-heading h2 {
        font-size: 36px;
    }

    .vp-related-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;

        scrollbar-width: none;
    }

    .vp-related-track::-webkit-scrollbar {
        display: none;
    }

    .vp-related-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
        scroll-snap-align: start;
    }

    .vp-related-image {
        height: 180px;
    }

    .vp-related-content {
        padding: 20px;
    }

    .vp-related-content h3 {
        font-size: 18px;
    }

    .vp-related-meta {
        display: block;
        line-height: 1.6;
    }

}


/* SMALL MOBILE */

@media (max-width: 520px) {

    .vp-related-heading h2 {
        font-size: 32px;
    }

    .vp-related-card {
        flex-basis: calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .vp-related-image {
        height: 160px;
    }

    .vp-related-content {
        padding: 17px;
    }

    .vp-related-content h3 {
        font-size: 17px;
    }

}
/* =====================================================
   SINGLE BLOG FEATURED IMAGE
===================================================== */

.vp-single-featured-image {
    width: 100% !important;
    max-width: 900px !important;
    margin: 30px auto 45px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
}

.vp-single-featured-image img {
    width: 100% !important;
    max-width: 900px !important;
    height: 420px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {

    .vp-single-featured-image {
        width: 100% !important;
        margin: 20px auto 30px !important;
        border-radius: 12px !important;
    }

    .vp-single-featured-image img {
        width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
    }

}
/* =====================================================
   HOMEPAGE INSIGHTS - MOBILE ONE CARD + SWIPE
===================================================== */

@media (max-width: 900px) {

    .vp-insights-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;

        gap: 16px !important;
        width: 100% !important;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .vp-insights-grid::-webkit-scrollbar {
        display: none;
    }

    .vp-insights-grid .vp-insight-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;

        scroll-snap-align: start;
    }

}
/* =====================================================
   MOBILE SWIPE INDICATOR - INSIGHTS
===================================================== */

@media (max-width: 900px) {

    .vp-insights-grid::after {
        content: "Swipe →";
        display: block;
        flex: 0 0 auto;

        align-self: center;

        font-size: 13px;
        font-weight: 700;
        letter-spacing: .5px;

        padding: 10px 14px;
        border: 1px solid rgba(20, 50, 100, .18);
        border-radius: 999px;

        white-space: nowrap;
    }

}
/* =====================================================
   MOBILE ARTICLE SWIPE HINT
===================================================== */

@media (max-width: 900px) {

    .vp-insight-card {
        position: relative !important;
    }

    .vp-insight-card:first-child::after {
        content: "Swipe →";
        position: absolute;
        right: 18px;
        bottom: 18px;

        background: #ffffff;
        color: #1264d8;

        font-size: 12px;
        font-weight: 700;
        letter-spacing: .4px;

        padding: 9px 14px;
        border-radius: 30px;

        box-shadow: 0 4px 14px rgba(0,0,0,.15);

        z-index: 20;

        animation: vpSwipeHint 1.8s ease-in-out infinite;
    }

}

@keyframes vpSwipeHint {

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

    50% {
        transform: translateX(7px);
    }

}
/* =====================================================
   RELATED ARTICLES - FINAL RESPONSIVE SLIDER
===================================================== */

.vp-related-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}


/* CARD */

.vp-related-card {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    overflow: hidden !important;
}


/* IMAGE */

.vp-related-image {
    display: block !important;
    width: 100% !important;
    height: 240px !important;
    overflow: hidden !important;
}

.vp-related-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}


/* =====================================================
   MOBILE - ONE CARD + SWIPE
===================================================== */

@media (max-width: 900px) {

    .vp-related-track {
        display: flex !important;
        flex-wrap: nowrap !important;

        width: 100% !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        gap: 16px !important;

        padding: 4px 0 15px !important;

        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;

        scrollbar-width: none !important;
    }

    .vp-related-track::-webkit-scrollbar {
        display: none !important;
    }


    .vp-related-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;

        scroll-snap-align: start !important;
    }


    .vp-related-image {
        height: 250px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .vp-related-track {
        gap: 14px !important;
    }

    .vp-related-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
    }

    .vp-related-image {
        height: 220px !important;
    }

}
/* =====================================================
   VISIONPRO NDT — ABOUT US PAGE
   COMPLETE FINAL CSS
===================================================== */


/* =====================================================
   PAGE BASE
===================================================== */

.vp-about-page {
    background: #ffffff;
    color: #101828;
    overflow: hidden;
}

.vp-about-page .vp-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HERO — SAME STYLE AS CONTACT US
===================================================== */

.vp-about-hero {
    min-height: 430px;
    display: flex;
    align-items: center;

    padding: 90px 0 80px;

    background: #0b2253;
    color: #ffffff;

    border: none;
}

.vp-about-hero .vp-container {
    max-width: 1100px;
}

.vp-about-hero .vp-eyebrow {
    display: block;

    margin: 0 0 34px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;

    letter-spacing: 0;
}

.vp-about-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(58px, 7vw, 92px);
    font-weight: 700;
    line-height: .95;

    letter-spacing: -3px;
}


/* =====================================================
   WHO WE ARE
===================================================== */

.vp-about-intro {
    padding: 115px 0;
    background: #ffffff;
}

.vp-about-intro-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 70px;
    align-items: start;
}

.vp-about-intro-content {
    max-width: 820px;
}

.vp-about-intro-content h2 {
    margin: 0 0 30px;

    color: #101828;

    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 700;
    line-height: 1.05;

    letter-spacing: -2px;
}

.vp-about-intro-content h2 span {
    color: #1769d2;
}

.vp-about-intro-content p {
    margin: 0 0 20px;

    color: #596574;

    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.vp-section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.vp-section-heading .vp-eyebrow {
    display: block;
}

.vp-section-heading h2 {
    margin: 15px 0 18px;

    color: #101828;

    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -2px;
}

.vp-section-heading h2 span {
    color: #1769d2;
}

.vp-section-heading p {
    margin: 0;

    color: #5c6877;

    font-size: 17px;
    line-height: 1.7;
}


/* =====================================================
   WHAT WE DO
===================================================== */

.vp-about-services {
    padding: 115px 0;
    background: #f5f8fc;
}

.vp-about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vp-about-service-card {
    position: relative;

    min-height: 300px;
    padding: 32px;

    background: #ffffff;

    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 18px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.vp-about-service-card:hover {
    transform: translateY(-6px);

    border-color: rgba(23, 105, 210, .20);

    box-shadow: 0 18px 45px rgba(20, 55, 100, .10);
}

.vp-about-number {
    display: block;

    margin-bottom: 55px;

    color: #1769d2;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}

.vp-about-service-card h3 {
    margin: 0 0 15px;

    color: #101828;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.vp-about-service-card p {
    margin: 0;

    color: #647080;

    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   WHY VISIONPRO
===================================================== */

.vp-about-why {
    padding: 115px 0;
    background: #ffffff;
}

.vp-about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.vp-about-why-grid > div:first-child {
    max-width: 650px;
}

.vp-about-why h2 {
    margin: 16px 0 25px;

    color: #101828;

    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -2px;
}

.vp-about-why h2 span {
    display: block;
    color: #1769d2;
}

.vp-about-why p {
    margin: 0 0 18px;

    color: #5d6876;

    font-size: 17px;
    line-height: 1.75;
}


/* =====================================================
   WHY POINTS
===================================================== */

.vp-about-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vp-about-point {
    padding: 25px 28px;

    background: #ffffff;

    border: 1px solid rgba(16, 24, 40, .09);
    border-radius: 14px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.vp-about-point:hover {
    transform: translateX(5px);

    box-shadow: 0 12px 30px rgba(20, 55, 100, .08);
}

.vp-about-point strong {
    display: block;

    margin-bottom: 7px;

    color: #101828;

    font-size: 17px;
    font-weight: 700;
}

.vp-about-point span {
    display: block;

    color: #687484;

    font-size: 14px;
    line-height: 1.6;
}


/* =====================================================
   INDUSTRIES
===================================================== */

.vp-about-industries {
    padding: 115px 0;
    background: #f5f8fc;
}

.vp-about-industry-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vp-about-industry-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 24px;

    background: #ffffff;

    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 12px;

    color: #182333;

    text-decoration: none;

    font-size: 17px;
    font-weight: 700;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.vp-about-industry-list a span {
    color: #1769d2;
    font-size: 20px;
}

.vp-about-industry-list a:hover {
    transform: translateX(5px);

    border-color: rgba(23, 105, 210, .35);

    box-shadow: 0 12px 30px rgba(20, 55, 100, .08);
}


/* =====================================================
   FINAL CTA
===================================================== */

.vp-about-cta {
    padding: 115px 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(47, 125, 235, .20),
            transparent 35%
        ),
        #0b1422;

    color: #ffffff;
}

.vp-about-cta .vp-container {
    text-align: center;
}

.vp-about-cta .vp-eyebrow {
    color: #6daeff;
}

.vp-about-cta h2 {
    max-width: 800px;

    margin: 18px auto 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;

    letter-spacing: -2px;
}

.vp-about-cta h2 span {
    color: #5da2ff;
}

.vp-about-cta p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: #b9c4d2;

    font-size: 17px;
    line-height: 1.7;
}

.vp-about-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    flex-wrap: wrap;
}


/* =====================================================
   MOBILE — TABLET
===================================================== */

@media (max-width: 900px) {

    .vp-about-page .vp-container {
        width: min(92%, 700px);
    }


    /* HERO */

    .vp-about-hero {
        min-height: 360px;
        padding: 85px 0 75px;
    }

    .vp-about-hero .vp-eyebrow {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .vp-about-hero h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }


    /* INTRO */

    .vp-about-intro {
        padding: 80px 0;
    }

    .vp-about-intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* SERVICES */

    .vp-about-services {
        padding: 80px 0;
    }

    .vp-about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* WHY */

    .vp-about-why {
        padding: 80px 0;
    }

    .vp-about-why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    /* INDUSTRIES */

    .vp-about-industries {
        padding: 80px 0;
    }

    .vp-about-industry-list {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CTA */

    .vp-about-cta {
        padding: 80px 0;
    }

}


/* =====================================================
   MOBILE — PHONE
===================================================== */

@media (max-width: 600px) {

    .vp-about-page .vp-container {
        width: calc(100% - 40px);
    }


    /* HERO */

    .vp-about-hero {
        min-height: 300px;
        padding: 70px 0 65px;
    }

    .vp-about-hero .vp-eyebrow {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .vp-about-hero h1 {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -1.5px;
    }


    /* INTRO */

    .vp-about-intro {
        padding: 65px 0;
    }

    .vp-about-intro-content h2 {
        font-size: 38px;
        letter-spacing: -1.2px;
    }

    .vp-about-intro-content p {
        font-size: 16px;
    }


    /* SECTION HEADINGS */

    .vp-section-heading {
        margin-bottom: 35px;
    }

    .vp-section-heading h2 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .vp-section-heading p {
        font-size: 16px;
    }


    /* SERVICES */

    .vp-about-services {
        padding: 65px 0;
    }

    .vp-about-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vp-about-service-card {
        min-height: auto;
        padding: 26px;
    }

    .vp-about-number {
        margin-bottom: 35px;
    }


    /* WHY */

    .vp-about-why {
        padding: 65px 0;
    }

    .vp-about-why h2 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .vp-about-why p {
        font-size: 16px;
    }

    .vp-about-point {
        padding: 22px;
    }


    /* INDUSTRIES */

    .vp-about-industries {
        padding: 65px 0;
    }

    .vp-about-industry-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vp-about-industry-list a {
        padding: 19px 20px;
    }


    /* CTA */

    .vp-about-cta {
        padding: 65px 0;
    }

    .vp-about-cta h2 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .vp-about-cta p {
        font-size: 16px;
    }

    .vp-about-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .vp-about-cta-actions .vp-btn {
        width: 100%;
    }

}
/* =====================================================
   VISIONPRO NDT — CONTACT US PAGE
   COMPLETE FINAL CSS
===================================================== */

.vp-contact-page {
    background: #ffffff;
    color: #101828;
    overflow: hidden;
}

.vp-contact-page .vp-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}


/* =====================================================
   HERO — CONTACT US
===================================================== */

.vp-contact-hero {
    min-height: 430px;
    display: flex;
    align-items: center;

    padding: 90px 0 80px;

    background: #0b2253;
    color: #ffffff;
}

.vp-contact-hero .vp-eyebrow {
    display: block;
    margin: 0 0 34px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.vp-contact-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(58px, 7vw, 92px);
    font-weight: 700;
    line-height: .95;

    letter-spacing: -3px;
}


/* =====================================================
   INTRO
===================================================== */

.vp-contact-intro {
    padding: 110px 0;
    background: #ffffff;
}

.vp-contact-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.vp-contact-intro-grid h2 {
    margin: 16px 0 0;

    color: #101828;

    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -2px;
}

.vp-contact-intro-grid h2 span {
    display: block;
    color: #1769d2;
}

.vp-contact-intro-text {
    max-width: 620px;
}

.vp-contact-intro-text p {
    margin: 0 0 20px;

    color: #5c6877;

    font-size: 17px;
    line-height: 1.8;
}


/* =====================================================
   MAIN CONTACT AREA
===================================================== */

.vp-contact-main {
    padding: 110px 0;
    background: #f5f8fc;
}

.vp-contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.vp-contact-details {
    padding-top: 10px;
}

.vp-contact-details h2 {
    margin: 16px 0 20px;

    color: #101828;

    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.vp-contact-details h2 span {
    display: block;
    color: #1769d2;
}

.vp-contact-details > p {
    max-width: 500px;

    margin: 0 0 40px;

    color: #5d6876;

    font-size: 17px;
    line-height: 1.75;
}


/* =====================================================
   DETAIL LIST
===================================================== */

.vp-contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;

    border-top: 1px solid rgba(16, 24, 40, .10);
}

.vp-contact-detail {
    display: flex;
    flex-direction: column;

    padding: 22px 0;

    border-bottom: 1px solid rgba(16, 24, 40, .10);
}

.vp-contact-detail-label {
    display: block;

    margin-bottom: 8px;

    color: #1769d2;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.vp-contact-detail a {
    color: #101828;

    font-size: 21px;
    font-weight: 700;

    text-decoration: none;
}

.vp-contact-detail > span:last-child {
    max-width: 480px;

    color: #667281;

    font-size: 15px;
    line-height: 1.6;
}


/* =====================================================
   FORM BOX
===================================================== */

.vp-contact-form-box {
    padding: 42px;

    background: #ffffff;

    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(20, 55, 100, .08);
}

.vp-form-heading {
    margin-bottom: 30px;
}

.vp-form-heading h3 {
    margin: 14px 0 0;

    color: #101828;

    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}


/* =====================================================
   FORM
===================================================== */

.vp-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.vp-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vp-form-field label {
    color: #182333;

    font-size: 14px;
    font-weight: 700;
}

.vp-form-field input,
.vp-form-field select,
.vp-form-field textarea {
    width: 100%;

    padding: 15px 16px;

    box-sizing: border-box;

    background: #f8fafc;

    border: 1px solid #dbe2ea;
    border-radius: 9px;

    color: #101828;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.vp-form-field input,
.vp-form-field select {
    min-height: 52px;
}

.vp-form-field textarea {
    min-height: 145px;
    resize: vertical;
}

.vp-form-field input::placeholder,
.vp-form-field textarea::placeholder {
    color: #98a2b3;
}

.vp-form-field input:focus,
.vp-form-field select:focus,
.vp-form-field textarea:focus {
    background: #ffffff;

    border-color: #3181e8;

    box-shadow: 0 0 0 3px rgba(49, 129, 232, .10);
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.vp-contact-submit {
    width: 100%;
    min-height: 56px;

    margin-top: 4px;

    border: none;
    cursor: pointer;
}


/* =====================================================
   SUCCESS / ERROR
===================================================== */

.vp-contact-success {
    padding: 30px;

    text-align: center;

    background: #f2f8ff;

    border: 1px solid rgba(23, 105, 210, .15);
    border-radius: 14px;
}

.vp-contact-success > span {
    display: inline-flex;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    background: #1769d2;

    border-radius: 50%;

    color: #ffffff;

    font-size: 22px;
}

.vp-contact-success h3 {
    margin: 0 0 10px;

    color: #101828;

    font-size: 24px;
}

.vp-contact-success p {
    margin: 0;

    color: #667281;

    font-size: 15px;
    line-height: 1.6;
}

.vp-contact-error {
    margin-bottom: 20px;
    padding: 14px 16px;

    background: #fff5f5;

    border: 1px solid #f1caca;
    border-radius: 9px;

    color: #a33a3a;

    font-size: 14px;
}


/* =====================================================
   WHAT CAN WE HELP WITH
===================================================== */

.vp-contact-help {
    padding: 110px 0;
    background: #ffffff;
}

.vp-contact-help .vp-section-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.vp-contact-help .vp-section-heading h2 {
    margin: 15px 0 18px;

    color: #101828;

    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
}

.vp-contact-help .vp-section-heading h2 span {
    color: #1769d2;
}

.vp-contact-help .vp-section-heading p {
    color: #5c6877;

    font-size: 17px;
    line-height: 1.7;
}

.vp-contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vp-contact-help-card {
    padding: 32px;

    background: #f5f8fc;

    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 16px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.vp-contact-help-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(20, 55, 100, .09);
}

.vp-contact-help-card > span {
    display: block;

    margin-bottom: 55px;

    color: #1769d2;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}

.vp-contact-help-card h3 {
    margin: 0 0 12px;

    color: #101828;

    font-size: 21px;
}

.vp-contact-help-card p {
    margin: 0;

    color: #667281;

    font-size: 15px;
    line-height: 1.7;
}


/* =====================================================
   FINAL CTA
===================================================== */

.vp-contact-cta {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(47, 125, 235, .20),
            transparent 35%
        ),
        #0b1422;

    color: #ffffff;
}

.vp-contact-cta .vp-container {
    text-align: center;
}

.vp-contact-cta .vp-eyebrow {
    color: #6daeff;
}

.vp-contact-cta h2 {
    max-width: 800px;

    margin: 18px auto 20px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -2px;
}

.vp-contact-cta h2 span {
    color: #5da2ff;
}

.vp-contact-cta p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: #b9c4d2;

    font-size: 17px;
    line-height: 1.7;
}

.vp-contact-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* =====================================================
   MOBILE — TABLET
===================================================== */

@media (max-width: 900px) {

    .vp-contact-page .vp-container {
        width: min(92%, 700px);
    }


    /* HERO */

    .vp-contact-hero {
        min-height: 360px;
        padding: 85px 0 75px;
    }

    .vp-contact-hero .vp-eyebrow {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .vp-contact-hero h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }


    /* INTRO */

    .vp-contact-intro {
        padding: 80px 0;
    }

    .vp-contact-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    /* MAIN */

    .vp-contact-main {
        padding: 80px 0;
    }

    .vp-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    /* HELP */

    .vp-contact-help {
        padding: 80px 0;
    }

    .vp-contact-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CTA */

    .vp-contact-cta {
        padding: 80px 0;
    }

}


/* =====================================================
   MOBILE — PHONE
===================================================== */

@media (max-width: 600px) {

    .vp-contact-page .vp-container {
        width: calc(100% - 40px);
    }


    /* HERO */

    .vp-contact-hero {
        min-height: 300px;
        padding: 70px 0 65px;
    }

    .vp-contact-hero .vp-eyebrow {
        margin-bottom: 20px;
        font-size: 13px;
    }

    .vp-contact-hero h1 {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -1.5px;
    }


    /* INTRO */

    .vp-contact-intro {
        padding: 65px 0;
    }

    .vp-contact-intro-grid h2 {
        font-size: 40px;
    }

    .vp-contact-intro-text p {
        font-size: 16px;
    }


    /* CONTACT */

    .vp-contact-main {
        padding: 65px 0;
    }

    .vp-contact-grid {
        gap: 40px;
    }

    .vp-contact-details h2 {
        font-size: 40px;
    }

    .vp-contact-details > p {
        font-size: 16px;
    }


    /* FORM */

    .vp-contact-form-box {
        padding: 24px 20px;
        border-radius: 15px;
    }

    .vp-form-heading h3 {
        font-size: 28px;
    }

    .vp-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vp-form-field input,
    .vp-form-field select {
        min-height: 50px;
    }


    /* HELP */

    .vp-contact-help {
        padding: 65px 0;
    }

    .vp-contact-help .vp-section-heading h2 {
        font-size: 40px;
    }

    .vp-contact-help-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vp-contact-help-card {
        padding: 26px;
    }


    /* CTA */

    .vp-contact-cta {
        padding: 65px 0;
    }

    .vp-contact-cta h2 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .vp-contact-cta p {
        font-size: 16px;
    }

    .vp-contact-cta-actions {
        flex-direction: column;
    }

    .vp-contact-cta-actions .vp-btn {
        width: 100%;
    }

}
/* =====================================================
   CERTIFICATIONS & COMPLIANCE
===================================================== */

.vp-certifications-section {
    padding: 100px 0;
    background: #f6f9fd;
}

.vp-certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.vp-certification-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(10, 35, 83, 0.08);
}

.vp-certification-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 330px;
    overflow: hidden;
    background: #eef3f9;
}

.vp-certification-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.vp-certification-view {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: #1264d8;
    color: #ffffff;
    padding: 9px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.vp-certification-content {
    padding: 24px;
}

.vp-certification-number {
    display: inline-block;
    color: #1264d8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.vp-certification-content h3 {
    margin: 10px 0 10px;
    color: #0b2253;
    font-size: 22px;
    line-height: 1.3;
}

.vp-certification-content p {
    margin: 0 0 18px;
    color: #667085;
    line-height: 1.7;
}

.vp-certification-content .vp-text-link {
    color: #1264d8;
    font-weight: 700;
}


/* =====================================================
   MOBILE — 2 CARDS + HORIZONTAL SWIPE
===================================================== */

@media (max-width: 900px) {

    .vp-certifications-section {
        padding: 70px 0;
    }

    .vp-certifications-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 16px !important;
        padding: 4px 0 14px !important;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .vp-certifications-grid::-webkit-scrollbar {
        display: none;
    }

    .vp-certification-card {
        flex: 0 0 calc((100% - 16px) / 2) !important;
        width: calc((100% - 16px) / 2) !important;
        min-width: calc((100% - 16px) / 2) !important;

        scroll-snap-align: start;
    }

    .vp-certification-preview {
        height: 260px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .vp-certifications-grid {
        gap: 14px !important;
    }

    .vp-certification-card {
        flex: 0 0 calc((100% - 14px) / 2) !important;
        width: calc((100% - 14px) / 2) !important;
        min-width: calc((100% - 14px) / 2) !important;
    }

    .vp-certification-preview {
        height: 210px;
    }

    .vp-certification-content {
        padding: 16px;
    }

    .vp-certification-content h3 {
        font-size: 17px;
    }

    .vp-certification-content p {
        font-size: 13px;
        line-height: 1.55;
    }

    .vp-certification-view {
        right: 10px;
        bottom: 10px;
        padding: 7px 10px;
        font-size: 10px;
    }
}
/* =====================================================
   CERTIFICATE — CLEAN MOBILE VERSION
===================================================== */

/* Image ke upar wala duplicate button hide */
.vp-certification-view {
    display: none !important;
}

/* Desktop */
.vp-certification-preview {
    height: 300px !important;
}

.vp-certification-content {
    padding: 20px !important;
}

.vp-certification-content h3 {
    font-size: 20px !important;
    margin: 8px 0 !important;
}

.vp-certification-content p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
}


/* =====================================================
   MOBILE — 2 CARDS VISIBLE + SWIPE
===================================================== */

@media (max-width: 900px) {

    .vp-certifications-section {
        padding: 60px 0 !important;
    }

    .vp-certifications-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 14px !important;
        padding: 3px 0 12px !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
    }

    .vp-certifications-grid::-webkit-scrollbar {
        display: none !important;
    }

    .vp-certification-card {
        flex: 0 0 calc((100% - 14px) / 2) !important;
        width: calc((100% - 14px) / 2) !important;
        min-width: calc((100% - 14px) / 2) !important;
        scroll-snap-align: start !important;
        border-radius: 14px !important;
    }

    .vp-certification-preview {
        height: 180px !important;
    }

    .vp-certification-content {
        padding: 14px !important;
    }

    .vp-certification-number {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }

    .vp-certification-content h3 {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin: 7px 0 !important;
    }

    .vp-certification-content p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        margin-bottom: 12px !important;
    }

    .vp-certification-content .vp-text-link {
        font-size: 12px !important;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .vp-certification-preview {
        height: 165px !important;
    }

    .vp-certification-content {
        padding: 12px !important;
    }

    .vp-certification-content h3 {
        font-size: 15px !important;
    }

    .vp-certification-content p {
        font-size: 11px !important;
    }

    .vp-certification-content .vp-text-link {
        font-size: 11px !important;
    }
}
/* =====================================================
   CERTIFICATE HOVER EFFECT
===================================================== */

.vp-certification-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.vp-certification-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(10, 35, 83, 0.15) !important;
}

.vp-certification-card:hover .vp-certification-preview img {
    transform: scale(1.03) !important;
    transition: transform 0.4s ease !important;
}


/* =====================================================
   MOBILE SWIPE INDICATOR
===================================================== */

@media (max-width: 900px) {

    .vp-certification-card:hover {
        transform: none !important;
        box-shadow: 0 12px 30px rgba(10, 35, 83, 0.10) !important;
    }

    .vp-certifications-section .vp-section-heading {
        position: relative !important;
        padding-bottom: 42px !important;
    }

    .vp-certifications-section .vp-section-heading::after {
        content: "Swipe → to see more certificates";
        position: absolute;
        left: 0;
        bottom: 10px;

        font-size: 12px;
        font-weight: 700;
        color: #1264d8;
        letter-spacing: 0.2px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .vp-certifications-section .vp-section-heading {
        padding-bottom: 40px !important;
    }

    .vp-certifications-section .vp-section-heading::after {
        font-size: 11px;
        bottom: 8px;
    }

}
/* Mobile swipe text remove */
@media (max-width: 900px) {

    .vp-certifications-section .vp-section-heading {
        padding-bottom: 0 !important;
    }

    .vp-certifications-section .vp-section-heading::after {
        display: none !important;
    }

    /* Swipe dots */
    .vp-certifications-grid {
        position: relative;
        padding-bottom: 28px !important;
    }

    .vp-certifications-grid::after {
        content: "●  ○  ○";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        font-size: 9px;
        letter-spacing: 4px;
        white-space: nowrap;
    }
}

/* =====================================================
   CERTIFICATION DOTS
===================================================== */

.vp-certification-dots {
    display: none;
}

@media (max-width: 900px) {

    .vp-certification-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 7px !important;

        width: 100% !important;
        margin-top: 18px !important;
    }

    .vp-certification-dots span {
        display: block !important;

        width: 6px !important;
        height: 6px !important;

        border-radius: 50% !important;

        background: #c7ced9 !important;

        transition:
            background 0.25s ease,
            transform 0.25s ease !important;
    }

    .vp-certification-dots span.active {
        background: #1264d8 !important;
        transform: scale(1.25) !important;
    }
}
/* Remove old moving dots */
@media (max-width: 900px) {

    .vp-certifications-grid::after {
        display: none !important;
        content: none !important;
    }

    .vp-certification-dots {
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 7px !important;
        width: 100% !important;
        margin: 18px 0 0 !important;
        padding: 0 !important;
    }

    .vp-certification-dots span {
        width: 6px !important;
        height: 6px !important;
        display: block !important;
        border-radius: 50% !important;
        background: #c7ced9 !important;
        transition: all .25s ease !important;
    }

    .vp-certification-dots span.active {
        background: #1264d8 !important;
        transform: scale(1.35) !important;
    }
}
/* CERTIFICATE MOBILE DOTS */
.vp-certification-dots {
    display: none !important;
}

@media (max-width: 900px) {

    .vp-certification-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 7px !important;
        width: 100% !important;
        margin: 18px 0 0 !important;
        padding: 0 !important;
    }

    .vp-certification-dots span {
        display: block !important;
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background: #c7ced9 !important;
    }

    .vp-certification-dots span.active {
        background: #1264d8 !important;
        transform: scale(1.35) !important;
    }
}
/* =====================================================
   INDUSTRIES PAGE
===================================================== */

.vp-industries-page {
    background: #ffffff;
}

/* HERO */
.vp-industries-hero {
    padding: 110px 0 100px;
    background:
        linear-gradient(135deg, #071b43 0%, #0b2253 55%, #103b7d 100%);
    color: #ffffff;
}

.vp-industries-hero .vp-eyebrow {
    color: #7db6ff;
}

.vp-industries-hero h1 {
    max-width: 850px;
    margin: 18px 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.vp-industries-hero h1 span {
    display: block;
    color: #5ea7ff;
}

.vp-industries-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}

/* INTRO */
.vp-industries-intro {
    padding: 90px 0 50px;
}

.vp-industries-intro .vp-section-heading {
    margin-bottom: 0;
}

/* GRID */
.vp-industries-list {
    padding: 40px 0 100px;
}

.vp-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 28px;
}

/* CARD */
.vp-industry-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(10,35,83,.08);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.vp-industry-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(10,35,83,.14);
}

/* IMAGE */
.vp-industry-image {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    background: #eaf0f7;
}

.vp-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.vp-industry-card:hover .vp-industry-image img {
    transform: scale(1.05);
}

.vp-industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4,18,45,.72),
        rgba(4,18,45,0) 55%
    );
}

.vp-industry-number {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: #0b2253;
    font-size: 13px;
    font-weight: 800;
}

/* CONTENT */
.vp-industry-content {
    padding: 26px 28px 30px;
}

.vp-industry-content h3 {
    margin: 0 0 12px;
    color: #0b2253;
    font-size: 27px;
    line-height: 1.2;
}

.vp-industry-content p {
    margin: 0 0 20px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.vp-industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1264d8;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.vp-industry-link span {
    transition: transform .2s ease;
}

.vp-industry-link:hover span {
    transform: translate(3px,-3px);
}

/* CTA */
.vp-industries-cta {
    padding: 0 0 100px;
}

.vp-industries-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 24px;
    background: #0b2253;
}

.vp-industries-cta-box .vp-eyebrow {
    color: #7db6ff;
}

.vp-industries-cta-box h2 {
    max-width: 650px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.vp-industries-cta-box h2 span {
    color: #5ea7ff;
}

.vp-industries-cta-box p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.vp-industries-cta-box .vp-btn {
    flex-shrink: 0;
}


/* TABLET */
@media (max-width: 900px) {

    .vp-industries-hero {
        padding: 80px 0 75px;
    }

    .vp-industries-hero h1 {
        letter-spacing: -1px;
    }

    .vp-industries-grid {
        gap: 18px;
    }

    .vp-industry-image {
        height: 250px;
    }

    .vp-industry-content {
        padding: 20px;
    }

    .vp-industry-content h3 {
        font-size: 22px;
    }

    .vp-industries-cta-box {
        padding: 40px 30px;
    }
}


/* MOBILE */
@media (max-width: 600px) {

    .vp-industries-hero {
        padding: 65px 0 60px;
    }

    .vp-industries-hero h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .vp-industries-hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .vp-industries-intro {
        padding: 65px 0 30px;
    }

    .vp-industries-list {
        padding: 25px 0 70px;
    }

    .vp-industries-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vp-industry-image {
        height: 230px;
    }

    .vp-industry-content {
        padding: 18px;
    }

    .vp-industry-content h3 {
        font-size: 21px;
    }

    .vp-industry-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .vp-industries-cta {
        padding-bottom: 70px;
    }

    .vp-industries-cta-box {
        display: block;
        padding: 32px 22px;
        border-radius: 18px;
    }

    .vp-industries-cta-box h2 {
        font-size: 31px;
    }

    .vp-industries-cta-box p {
        font-size: 14px;
    }

    .vp-industries-cta-box .vp-btn {
        margin-top: 24px;
    }
}
/* INDUSTRIES PAGE - OVERRIDE OLD STYLES */

.vp-industries-page .vp-industry-card {
    position: relative !important;
    background: #ffffff !important;
    color: #0b2253 !important;
}

.vp-industries-page .vp-industry-image {
    position: relative !important;
    height: 320px !important;
    overflow: hidden !important;
    background: #eaf0f7 !important;
}

.vp-industries-page .vp-industry-overlay {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    pointer-events: none !important;
}

.vp-industries-page .vp-industry-content {
    position: relative !important;
    z-index: 5 !important;
    background: #ffffff !important;
    color: #0b2253 !important;
}

.vp-industries-page .vp-industry-content h3 {
    color: #0b2253 !important;
}

.vp-industries-page .vp-industry-content p {
    color: #667085 !important;
}

.vp-industries-page .vp-industry-link {
    display: inline-flex !important;
    color: #1264d8 !important;
}

/* Hide any old industry CTA/button */
.vp-industries-page .vp-industry-card > .vp-btn,
.vp-industries-page .vp-industry-image .vp-btn {
    display: none !important;
}

@media (max-width: 600px) {
    .vp-industries-page .vp-industry-image {
        height: 230px !important;
    }
}
/* RESTORE HOMEPAGE INDUSTRIES */
body.home .vp-industries-grid,
.home .vp-industries-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

body.home .vp-industry-card,
.home .vp-industry-card {
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

body.home .vp-industry-image,
.home .vp-industry-image {
    height: 325px !important;
}

@media (max-width: 900px) {
    body.home .vp-industries-grid,
    .home .vp-industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
/* REMOVE INDUSTRY NUMBER CIRCLES FROM HOMEPAGE */

body.home .vp-industry-number,
.home .vp-industry-number {
    display: none !important;
}
/* =====================================================
   PRIVACY POLICY
===================================================== */

.vp-legal-page {
    background: #f6f9fd;
}

/* HERO */
.vp-legal-hero {
    padding: 100px 0 90px;
    background: linear-gradient(135deg, #071b43 0%, #0b2253 60%, #123d80 100%);
}

.vp-legal-hero .vp-eyebrow {
    color: #7db6ff;
}

.vp-legal-hero h1 {
    margin: 15px 0 15px;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.05;
}

.vp-legal-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.7;
}

/* CONTENT */
.vp-legal-content {
    padding: 80px 0 100px;
}

.vp-legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* INTRO */
.vp-legal-intro {
    margin-bottom: 22px;
    padding: 35px 38px;
    background: #ffffff;
    border-left: 4px solid #1264d8;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(10,35,83,.07);
}

.vp-legal-intro .vp-eyebrow {
    color: #1264d8;
}

.vp-legal-intro h2 {
    margin: 10px 0 12px;
    color: #0b2253;
    font-size: 30px;
}

.vp-legal-intro p {
    margin: 0 0 15px;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}

.vp-legal-date {
    color: #98a2b3;
    font-size: 13px;
    font-weight: 700;
}

/* SECTIONS */
.vp-legal-section {
    position: relative;
    margin-bottom: 18px;
    padding: 30px 35px 32px;
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.07);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(10,35,83,.045);
}

.vp-legal-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 13px;
    border-radius: 50%;
    background: #e9f2ff;
    color: #1264d8;
    font-size: 12px;
    font-weight: 800;
}

.vp-legal-section h2 {
    margin: 0 0 14px;
    color: #0b2253;
    font-size: 23px;
    line-height: 1.3;
}

.vp-legal-section p {
    margin: 0 0 12px;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}

.vp-legal-section p:last-child {
    margin-bottom: 0;
}

.vp-legal-section ul {
    margin: 12px 0 0;
    padding-left: 22px;
}

.vp-legal-section li {
    margin-bottom: 8px;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.vp-legal-section li::marker {
    color: #1264d8;
}

/* CONTACT */
.vp-legal-contact {
    margin-top: 25px;
    padding: 38px;
    background: #0b2253;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(10,35,83,.15);
}

.vp-legal-contact .vp-eyebrow {
    color: #7db6ff;
}

.vp-legal-contact h2 {
    margin: 12px 0 14px;
    color: #ffffff;
    font-size: 31px;
}

.vp-legal-contact > p {
    max-width: 700px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

.vp-legal-contact-details p {
    margin: 7px 0;
    color: rgba(255,255,255,.8);
}

.vp-legal-contact-details strong {
    color: #ffffff;
}

.vp-legal-contact-details a {
    color: #69b0ff;
    font-weight: 700;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {

    .vp-legal-hero {
        padding: 65px 0 60px;
    }

    .vp-legal-hero h1 {
        font-size: 42px;
    }

    .vp-legal-hero p {
        font-size: 14px;
    }

    .vp-legal-content {
        padding: 55px 0 70px;
    }

    .vp-legal-intro {
        padding: 25px 22px;
    }

    .vp-legal-intro h2 {
        font-size: 25px;
    }

    .vp-legal-intro p {
        font-size: 14px;
    }

    .vp-legal-section {
        padding: 24px 21px 26px;
        border-radius: 14px;
    }

    .vp-legal-section h2 {
        font-size: 20px;
    }

    .vp-legal-section p,
    .vp-legal-section li {
        font-size: 14px;
        line-height: 1.7;
    }

    .vp-legal-contact {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .vp-legal-contact h2 {
        font-size: 26px;
    }
}
/* =====================================================
   INNER PAGE HERO - COMPACT
===================================================== */

.vp-about-hero,
.vp-industries-hero,
.vp-legal-hero {
    min-height: 0 !important;
    padding: 75px 0 70px !important;
}

.vp-about-hero h1,
.vp-industries-hero h1,
.vp-legal-hero h1 {
    margin-top: 12px !important;
}

@media (max-width: 600px) {

    .vp-about-hero,
    .vp-industries-hero,
    .vp-legal-hero {
        padding: 55px 0 50px !important;
    }

    .vp-about-hero h1,
    .vp-industries-hero h1,
    .vp-legal-hero h1 {
        margin-top: 10px !important;
    }
}
/* =====================================================
   404 PAGE
===================================================== */

.vp-404-page {
    background: #f6f9fd;
}

.vp-404-section {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 90px 0;
    background:
        linear-gradient(135deg, #071b43 0%, #0b2253 60%, #123d80 100%);
}

.vp-404-content {
    max-width: 850px;
}

.vp-404-code {
    display: block;
    margin-bottom: 10px;
    color: #5ea7ff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 4px;
}

.vp-404-content .vp-eyebrow {
    color: #7db6ff;
}

.vp-404-content h1 {
    margin: 15px 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5.5vw, 70px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.vp-404-content h1 span {
    display: block;
    color: #5ea7ff;
}

.vp-404-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.7;
}

.vp-404-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.vp-404-actions .vp-btn {
    text-decoration: none;
}

.vp-404-actions .vp-btn-secondary {
    border: 1px solid rgba(255,255,255,.25);
    color: #ffffff;
    background: transparent;
}

.vp-404-actions .vp-btn-secondary:hover {
    background: rgba(255,255,255,.08);
}


/* MOBILE */
@media (max-width: 600px) {

    .vp-404-section {
        min-height: 560px;
        padding: 65px 0;
    }

    .vp-404-code {
        font-size: 15px;
        letter-spacing: 3px;
    }

    .vp-404-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .vp-404-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .vp-404-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 26px;
    }

    .vp-404-actions .vp-btn {
        justify-content: center;
        width: 100%;
    }
}
/* =====================================================
   CONTACT PAGE HERO - COMPACT
===================================================== */

.vp-contact-hero {
    min-height: 0 !important;
    padding: 75px 0 70px !important;
}

.vp-contact-hero h1 {
    margin-top: 12px !important;
}

@media (max-width: 600px) {

    .vp-contact-hero {
        padding: 55px 0 50px !important;
    }

    .vp-contact-hero h1 {
        margin-top: 10px !important;
    }
}
/* =====================================================
   INDUSTRIES - MOBILE ONE CARD PER ROW
===================================================== */

@media (max-width: 600px) {

    .vp-industries-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
    }

    .vp-industry-card {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 300px !important;
        min-height: 300px !important;
    }

    .vp-industry-card h3 {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

}
/* =====================================================
   INDUSTRIES - FINAL MOBILE LAYOUT
===================================================== */

@media (max-width: 600px) {

    .vp-industries-section {
        overflow: hidden !important;
    }

    .vp-industries-grid {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 14px !important;
        overflow: visible !important;
    }

    .vp-industry-card {
        display: flex !important;
        flex: none !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        box-sizing: border-box !important;
    }

    .vp-industry-card h3 {
        font-size: 28px !important;
        line-height: 1.15 !important;
        max-width: 90% !important;
        white-space: normal !important;
        overflow: visible !important;
    }

}
/* =====================================================
   INDUSTRIES - MOBILE FORCE SINGLE COLUMN
===================================================== */

@media only screen and (max-width: 600px) {

    section.vp-industries-section
    .vp-industries-grid {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    section.vp-industries-section
    .vp-industries-grid
    .vp-industry-card {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 300px !important;
        min-height: 300px !important;
        margin: 0 0 14px 0 !important;
        box-sizing: border-box !important;
        float: none !important;
        clear: both !important;
    }

    section.vp-industries-section
    .vp-industry-card h3 {
        white-space: normal !important;
        width: auto !important;
        max-width: 90% !important;
        font-size: 28px !important;
        line-height: 1.15 !important;
    }
}
.vp-hero h1 {
    font-size: clamp(48px, 5vw, 72px) !important;
    line-height: 1.02 !important;
    letter-spacing: -2px !important;
    font-weight: 800 !important;
    max-width: 850px !important;
}

@media (max-width: 900px) {
    .vp-hero h1 {
        font-size: 50px !important;
        line-height: 1.02 !important;
        letter-spacing: -1.5px !important;
    }
}

@media (max-width: 600px) {
    .vp-hero h1 {
        font-size: 40px !important;
        line-height: 1.05 !important;
        letter-spacing: -1px !important;
    }
}
@media (max-width: 600px) {

    .vp-hero-stats {
        margin-top: 22px !important;
        padding-top: 18px !important;
    }

    .vp-hero-visual {
        margin-top: 10px !important;
        min-height: 260px !important;
        height: 260px !important;
    }

}
/* =========================================
   HEADER & HERO - CLEAR SEPARATION
   ========================================= */

.vp-header {
    background: #071b43 !important;
    border-bottom: 2px solid rgba(77, 163, 255, 0.35) !important;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22) !important;
    position: relative !important;
    z-index: 100 !important;
}

.vp-header-inner {
    background: transparent !important;
}
/* =========================================================
   VISIONPRO NDT — LIGHTER BLUE THEME
========================================================= */

/* HOME HERO */
.vp-hero {
    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(70, 145, 245, 0.28),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #0b2452 0%,
            #123b78 55%,
            #0b285a 100%
        ) !important;
}

/* HERO GRID */
.vp-hero::before {
    background-image:
        linear-gradient(
            rgba(255,255,255,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.055) 1px,
            transparent 1px
        ) !important;
}

/* INNER HERO VISUAL */
.vp-hero-visual-frame {
    background:
        radial-gradient(
            circle,
            rgba(55,135,240,.24),
            rgba(8,35,79,.12) 60%,
            transparent 70%
        ) !important;
}

/* GENERAL DARK PAGE HEROES */
.vp-page-header,
.vp-archive-header,
.vp-about-hero,
.vp-industries-hero,
.vp-contact-hero,
.vp-legal-hero {
    background:
        linear-gradient(
            135deg,
            #0c2858 0%,
            #164681 100%
        ) !important;
}

/* FINAL CTA */
.vp-final-cta {
    background:
        linear-gradient(
            135deg,
            #0c2858 0%,
            #164681 100%
        ) !important;
}

/* FINAL CTA INNER */
.vp-final-cta-inner {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(77,163,255,.24),
            transparent 32%
        ),
        rgba(255,255,255,.045) !important;
}

/* FOOTER — LIGHTER THAN CURRENT */
.vp-footer {
    background: #071b3b !important;
}
/* =========================================================
   MOBILE HERO VISUAL — COMPACT
========================================================= */

@media (max-width: 600px) {

    .vp-hero-visual {
        width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
        margin: 5px auto 20px !important;
        overflow: hidden !important;
    }

    .vp-hero-visual-frame {
        width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
        transform: scale(.88) !important;
        transform-origin: center center !important;
    }

    .vp-hero-visual-center {
        width: 145px !important;
        height: 145px !important;
    }

    .vp-hero-floating-card {
        padding: 10px 13px !important;
        border-radius: 9px !important;
    }

    .vp-hero-floating-card strong {
        font-size: 10px !important;
    }

}
/* =========================================================
   MOBILE FOOTER — COMPACT LAYOUT
========================================================= */

@media (max-width: 600px) {

    .vp-footer-main {
        width: calc(100% - 28px) !important;
        padding: 50px 0 40px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 38px 24px !important;
    }

    /* Brand full width */
    .vp-footer-brand {
        grid-column: 1 / -1 !important;
    }

    .vp-footer-description {
        max-width: 100% !important;
        margin: 16px 0 !important;
    }

    .vp-footer-social {
        margin-top: 25px !important;
    }

    /* Navigation */
    .vp-footer-column {
        min-width: 0 !important;
    }

    .vp-footer-heading {
        margin-bottom: 18px !important;
        font-size: 12px !important;
    }

    .vp-footer-menu,
    .vp-footer-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Industries — two small columns */
    .vp-footer-column:nth-child(3) .vp-footer-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px 12px !important;
    }

    .vp-footer-list a,
    .vp-footer-menu a {
        font-size: 11px !important;
    }

    /* Contact full width */
    .vp-footer-contact {
        grid-column: 1 / -1 !important;
    }

    .vp-footer-contact-item {
        margin-bottom: 14px !important;
    }

    .vp-footer-bottom {
        width: calc(100% - 28px) !important;
        padding: 20px 0 !important;
        gap: 14px !important;
    }

    .vp-footer-legal {
        flex-wrap: wrap !important;
        gap: 12px 18px !important;
    }

}
/* =========================================================
   INDUSTRIES PAGE — MOBILE IMAGE FIX
========================================================= */

@media (max-width: 600px) {

    .vp-industries-page .vp-industry-card {
        display: block !important;
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .vp-industries-page .vp-industry-image {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: 190px !important;
        overflow: hidden !important;
    }

    .vp-industries-page .vp-industry-image img {
        display: block !important;
        width: 100% !important;
        height: 190px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .vp-industries-page .vp-industry-content {
        padding: 22px 16px 24px !important;
    }

}
/* =========================================================
   VISIONPRO NDT — SERVICES PAGE
   Desktop + Mobile
========================================================= */

/* =========================================================
   PAGE BASE
========================================================= */

.vp-services-page {
    background: #f5f8fc;
    color: #101c32;
    overflow: hidden;
}

.vp-services-page .vp-container {
    width: min(1280px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.vp-services-hero {
    position: relative;
    padding: 105px 0 100px;
    background:
        linear-gradient(
            135deg,
            #0b2452 0%,
            #123d78 55%,
            #0b2858 100%
        );
    color: #ffffff;
    overflow: hidden;
}

.vp-services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );
    background-size: 75px 75px;
}

.vp-services-hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -220px;
    top: -250px;
    border: 1px solid rgba(96,170,255,.20);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(96,170,255,.035),
        0 0 0 160px rgba(96,170,255,.025);
}

.vp-services-hero .vp-container {
    position: relative;
    z-index: 2;
}

.vp-services-hero .vp-eyebrow {
    color: #65adff;
}

.vp-services-hero h1 {
    max-width: 850px;
    margin: 18px 0 22px;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -2.5px;
    font-weight: 800;
    color: #ffffff;
}

.vp-services-hero h1 span {
    display: block;
    color: #55a5ff;
}

.vp-services-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}

.vp-services-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.vp-services-hero-actions .vp-btn {
    text-decoration: none;
}


/* =========================================================
   INTRO
========================================================= */

.vp-services-intro {
    padding: 100px 0;
    background: #ffffff;
}

.vp-services-intro .vp-section-heading {
    margin-bottom: 0;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.vp-services-list {
    padding: 105px 0;
    background: #f5f8fc;
}

.vp-services-list .vp-section-heading {
    margin-bottom: 45px;
}

.vp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vp-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f1;
    border-radius: 18px;
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.vp-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37,117,220,.35);
    box-shadow: 0 18px 45px rgba(11,35,75,.10);
}


/* IMAGE PLACEHOLDER */

.vp-service-image {
    position: relative;
    height: 245px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #dce7f5,
            #b9c9df
        );
}

.vp-service-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(10,40,85,.15),
            rgba(10,40,85,.04)
        );
}

.vp-service-image-placeholder span {
    padding: 10px 18px;
    border: 1px solid rgba(10,40,85,.20);
    border-radius: 30px;
    color: #35557d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* SERVICE CONTENT */

.vp-service-content {
    padding: 27px 28px 30px;
}

.vp-service-number {
    display: block;
    margin-bottom: 12px;
    color: #287fe2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-service-content h3 {
    margin: 0 0 12px;
    color: #10254b;
    font-size: 23px;
    line-height: 1.2;
}

.vp-service-content p {
    margin: 0 0 22px;
    color: #617089;
    font-size: 14px;
    line-height: 1.7;
}

.vp-service-content .vp-text-link {
    color: #1268d8;
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   EQUIPMENT RANGE
========================================================= */

.vp-services-equipment {
    padding: 100px 0;
    background: #ffffff;
}

.vp-equipment-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 45px;
}

.vp-equipment-list span {
    padding: 18px 16px;
    border: 1px solid #dce4ef;
    border-radius: 10px;
    background: #f8fafd;
    color: #19345e;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}


/* =========================================================
   HOW WE HELP
========================================================= */

.vp-services-process {
    padding: 105px 0;
    background:
        linear-gradient(
            135deg,
            #0c2858,
            #164681
        );
    color: #ffffff;
}

.vp-services-process .vp-eyebrow {
    color: #67afff;
}

.vp-services-process h2 {
    color: #ffffff;
}

.vp-services-process h2 span {
    color: #58a8ff;
}

.vp-services-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 55px;
    background: rgba(255,255,255,.13);
}

.vp-process-item {
    padding: 35px 32px;
    background: rgba(5,25,58,.28);
}

.vp-process-item > span {
    color: #63adff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-process-item h3 {
    margin: 22px 0 12px;
    color: #ffffff;
    font-size: 21px;
}

.vp-process-item p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.vp-services-industries {
    padding: 100px 0;
    background: #f5f8fc;
}

.vp-services-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 30px;
}

.vp-services-industry-tags span {
    padding: 13px 18px;
    border: 1px solid #d9e2ee;
    border-radius: 30px;
    background: #ffffff;
    color: #17345f;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   WHY VISIONPRO
========================================================= */

.vp-services-why {
    padding: 105px 0;
    background: #ffffff;
}

.vp-services-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.vp-services-why-item {
    padding: 30px;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    background: #f8fafd;
}

.vp-services-why-item > span {
    color: #2479dc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.vp-services-why-item h3 {
    margin: 18px 0 10px;
    color: #122950;
    font-size: 20px;
}

.vp-services-why-item p {
    margin: 0;
    color: #64738a;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CERTIFICATIONS
========================================================= */

.vp-services-certifications {
    padding: 85px 0;
    background: #f5f8fc;
}

.vp-services-certification-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.vp-services-certification-tags span {
    padding: 16px 22px;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    background: #ffffff;
    color: #14315b;
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   FAQ
========================================================= */

.vp-services-faq {
    padding: 105px 0;
    background: #ffffff;
}

.vp-services-faq-list {
    max-width: 900px;
    margin-top: 45px;
}

.vp-services-faq-item {
    border-top: 1px solid #dce3ec;
}

.vp-services-faq-item:last-child {
    border-bottom: 1px solid #dce3ec;
}

.vp-services-faq-item summary {
    position: relative;
    padding: 23px 45px 23px 0;
    cursor: pointer;
    list-style: none;
    color: #122950;
    font-size: 16px;
    font-weight: 700;
}

.vp-services-faq-item summary::-webkit-details-marker {
    display: none;
}

.vp-services-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    top: 20px;
    color: #1973dc;
    font-size: 22px;
    font-weight: 400;
}

.vp-services-faq-item[open] summary::after {
    content: "−";
}

.vp-services-faq-item > div {
    padding: 0 45px 22px 0;
}

.vp-services-faq-item p {
    margin: 0;
    color: #65738a;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.vp-services-cta {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            #0b2452,
            #164681
        );
}

.vp-services-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(255,255,255,.045);
}

.vp-services-cta .vp-eyebrow {
    color: #67afff;
}

.vp-services-cta h2 {
    max-width: 700px;
    margin: 14px 0 15px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.vp-services-cta h2 span {
    color: #59a8ff;
}

.vp-services-cta p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .vp-services-hero {
        padding: 75px 0 70px;
    }

    .vp-services-hero h1 {
        font-size: 48px;
    }

    .vp-services-intro,
    .vp-services-list,
    .vp-services-equipment,
    .vp-services-process,
    .vp-services-industries,
    .vp-services-why,
    .vp-services-faq {
        padding: 75px 0;
    }

    .vp-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vp-equipment-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vp-services-process-grid,
    .vp-services-why-grid {
        grid-template-columns: 1fr;
    }

    .vp-services-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .vp-services-page .vp-container {
        width: min(100% - 32px, 100%);
    }

    .vp-services-hero {
        padding: 60px 0 55px;
    }

    .vp-services-hero h1 {
        font-size: 40px;
        line-height: 1.05;
        letter-spacing: -1.3px;
    }

    .vp-services-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .vp-services-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vp-services-hero-actions .vp-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .vp-services-intro,
    .vp-services-list,
    .vp-services-equipment,
    .vp-services-process,
    .vp-services-industries,
    .vp-services-why,
    .vp-services-faq {
        padding: 60px 0;
    }

    .vp-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vp-service-image {
        height: 205px;
    }

    .vp-service-content {
        padding: 23px 22px 25px;
    }

    .vp-service-content h3 {
        font-size: 21px;
    }

    .vp-equipment-list {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 30px;
    }

    .vp-equipment-list span {
        padding: 14px 10px;
        font-size: 11px;
    }

    .vp-services-industry-tags {
        gap: 8px;
        margin-top: 30px;
    }

    .vp-services-industry-tags span {
        padding: 10px 14px;
        font-size: 11px;
    }

    .vp-services-cta {
        padding: 60px 0;
    }

    .vp-services-cta-box {
        padding: 30px 23px;
        gap: 30px;
    }

    .vp-services-cta h2 {
        font-size: 35px;
    }

    .vp-services-cta .vp-btn {
        width: 100%;
        justify-content: center;
    }

}
/* =========================================================
   SERVICES HERO — SAME HEIGHT AS INNER PAGES
========================================================= */

.vp-services-hero {
    min-height: 0 !important;
    padding: 75px 0 70px !important;
}

.vp-services-hero h1 {
    margin: 14px 0 0 !important;
}

@media (max-width: 600px) {

    .vp-services-hero {
        min-height: 0 !important;
        padding: 48px 0 42px !important;
    }

    .vp-services-hero h1 {
        margin: 12px 0 0 !important;
        font-size: 40px !important;
        line-height: 1.02 !important;
    }

}
/* =====================================================
   BLOG PAGE — SIMPLE COMPACT HERO
===================================================== */

.vp-blog-hero {
    min-height: 0 !important;
    height: auto !important;
    padding: 70px 0 65px !important;
    display: block !important;
}

.vp-blog-hero .vp-container {
    min-height: 0 !important;
}

.vp-blog-hero h1 {
    margin: 12px 0 0 !important;
    max-width: 900px !important;
}

.vp-blog-hero p {
    display: none !important;
}

/* MOBILE */
@media (max-width: 600px) {

    .vp-blog-hero {
        min-height: 0 !important;
        height: auto !important;
        padding: 48px 0 42px !important;
    }

    .vp-blog-hero h1 {
        margin: 10px 0 0 !important;
        font-size: 42px !important;
        line-height: 1.08 !important;
    }

}
/* =====================================================
   BLOG — SPACE BELOW HERO
===================================================== */

.vp-blog-posts {
    padding-top: 70px !important;
}

@media (max-width: 600px) {
    .vp-blog-posts {
        padding-top: 45px !important;
    }
}
/* =====================================================
   VISIONPRO NDT
   INNER PAGES — UNIVERSAL HERO SYSTEM
===================================================== */

/* COMMON HERO */

.vp-about-hero,
.vp-blog-hero,
.vp-products-hero,
.vp-industries-hero,
.vp-services-hero,
.vp-contact-hero,
.vp-legal-hero {
    min-height: 360px !important;
    height: 360px !important;

    display: flex !important;
    align-items: center !important;

    padding: 55px 0 !important;
    box-sizing: border-box !important;

    background: linear-gradient(
        135deg,
        #071b43 0%,
        #0b2253 55%,
        #123d80 100%
    ) !important;
}


/* SAME CONTAINER ON EVERY PAGE */

.vp-about-hero .vp-container,
.vp-blog-hero .vp-container,
.vp-products-hero .vp-container,
.vp-industries-hero .vp-container,
.vp-services-hero .vp-container,
.vp-contact-hero .vp-container,
.vp-legal-hero .vp-container {
    width: min(1380px, 92%) !important;
    max-width: 1380px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
}


/* SAME EYEBROW POSITION */

.vp-about-hero .vp-eyebrow,
.vp-blog-hero .vp-eyebrow,
.vp-products-hero .vp-eyebrow,
.vp-industries-hero .vp-eyebrow,
.vp-services-hero .vp-eyebrow,
.vp-contact-hero .vp-eyebrow,
.vp-legal-hero .vp-eyebrow {
    display: block !important;
    margin-bottom: 18px !important;
}


/* COMMON HEADING */

.vp-about-hero h1,
.vp-blog-hero h1,
.vp-products-hero h1,
.vp-industries-hero h1,
.vp-services-hero h1,
.vp-contact-hero h1,
.vp-legal-hero h1 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    color: #ffffff !important;

    line-height: 1.04 !important;
    letter-spacing: -2px !important;
}


/* BLUE SECOND LINE */

.vp-about-hero h1 span,
.vp-blog-hero h1 span,
.vp-products-hero h1 span,
.vp-industries-hero h1 span,
.vp-services-hero h1 span,
.vp-contact-hero h1 span,
.vp-legal-hero h1 span {
    color: #5ea7ff !important;
}


/* COMMON DESCRIPTION */

.vp-about-hero p,
.vp-blog-hero p,
.vp-products-hero p,
.vp-industries-hero p,
.vp-services-hero p,
.vp-contact-hero p,
.vp-legal-hero p {
    margin-top: 18px !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .vp-about-hero,
    .vp-blog-hero,
    .vp-products-hero,
    .vp-industries-hero,
    .vp-services-hero,
    .vp-contact-hero,
    .vp-legal-hero {
        min-height: 250px !important;
        height: 250px !important;

        padding: 42px 0 !important;
    }


    .vp-about-hero .vp-container,
    .vp-blog-hero .vp-container,
    .vp-products-hero .vp-container,
    .vp-industries-hero .vp-container,
    .vp-services-hero .vp-container,
    .vp-contact-hero .vp-container,
    .vp-legal-hero .vp-container {
        width: 88% !important;
        max-width: none !important;
    }


    .vp-about-hero .vp-eyebrow,
    .vp-blog-hero .vp-eyebrow,
    .vp-products-hero .vp-eyebrow,
    .vp-industries-hero .vp-eyebrow,
    .vp-services-hero .vp-eyebrow,
    .vp-contact-hero .vp-eyebrow,
    .vp-legal-hero .vp-eyebrow {
        margin-bottom: 13px !important;
    }


    .vp-about-hero h1,
    .vp-blog-hero h1,
    .vp-products-hero h1,
    .vp-industries-hero h1,
    .vp-services-hero h1,
    .vp-contact-hero h1,
    .vp-legal-hero h1 {
        font-size: 42px !important;
        line-height: 1.06 !important;
        letter-spacing: -1px !important;
    }


    .vp-about-hero p,
    .vp-blog-hero p,
    .vp-products-hero p,
    .vp-industries-hero p,
    .vp-services-hero p,
    .vp-contact-hero p,
    .vp-legal-hero p {
        margin-top: 14px !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
    }
}
/* =====================================================
   INNER PAGE HERO — COMPACT FINAL
===================================================== */

.vp-about-hero,
.vp-blog-hero,
.vp-products-hero,
.vp-industries-hero,
.vp-services-hero,
.vp-contact-hero,
.vp-legal-hero {
    min-height: 300px !important;
    height: 300px !important;
    padding: 45px 0 !important;
}


/* Hero content alignment */

.vp-about-hero .vp-container,
.vp-blog-hero .vp-container,
.vp-products-hero .vp-container,
.vp-industries-hero .vp-container,
.vp-services-hero .vp-container,
.vp-contact-hero .vp-container,
.vp-legal-hero .vp-container {
    width: min(1380px, 92%) !important;
    max-width: 1380px !important;
}


/* Heading */

.vp-about-hero h1,
.vp-blog-hero h1,
.vp-products-hero h1,
.vp-industries-hero h1,
.vp-services-hero h1,
.vp-contact-hero h1,
.vp-legal-hero h1 {
    margin: 0 !important;
}


/* Hero description */

.vp-about-hero p,
.vp-blog-hero p,
.vp-products-hero p,
.vp-industries-hero p,
.vp-services-hero p,
.vp-contact-hero p,
.vp-legal-hero p {
    margin-top: 14px !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .vp-about-hero,
    .vp-blog-hero,
    .vp-products-hero,
    .vp-industries-hero,
    .vp-services-hero,
    .vp-contact-hero,
    .vp-legal-hero {
        min-height: 230px !important;
        height: 230px !important;
        padding: 35px 0 !important;
    }

    .vp-about-hero h1,
    .vp-blog-hero h1,
    .vp-products-hero h1,
    .vp-industries-hero h1,
    .vp-services-hero h1,
    .vp-contact-hero h1,
    .vp-legal-hero h1 {
        font-size: 40px !important;
        line-height: 1.05 !important;
    }
}
/* =========================================
   HOME — INDUSTRIES TO PRODUCTS GAP FIX
========================================= */

.vp-industries-section {
    padding-bottom: 60px !important;
}

.vp-featured-products {
    padding-top: 60px !important;
}

@media (max-width: 900px) {

    .vp-industries-section {
        padding-bottom: 40px !important;
    }

    .vp-featured-products {
        padding-top: 40px !important;
    }

}
/* =====================================================
   HOMEPAGE FEATURED PRODUCTS
   4 DESKTOP / 2 MOBILE + HORIZONTAL SCROLL
===================================================== */

.vp-products-section {
    overflow: hidden !important;
}

.vp-products-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 0 20px !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}

.vp-products-grid::-webkit-scrollbar {
    display: none !important;
}


/* DESKTOP
   4 PRODUCTS VISIBLE
*/

.vp-products-grid .vp-product-card {
    flex: 0 0 calc((100% - 72px) / 4) !important;
    width: calc((100% - 72px) / 4) !important;
    min-width: calc((100% - 72px) / 4) !important;
    max-width: calc((100% - 72px) / 4) !important;
    box-sizing: border-box !important;
}


/* PRODUCT IMAGE */

.vp-products-grid .vp-product-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 350px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.vp-products-grid .vp-product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(1.18) !important;
    display: block !important;
}


/* PRODUCT CONTENT */

.vp-products-grid .vp-product-content {
    padding: 26px 28px 30px !important;
}

.vp-products-grid .vp-product-category {
    display: block !important;
    margin-bottom: 14px !important;
}

.vp-products-grid .vp-product-content h3 {
    margin: 0 0 22px !important;
}


/* =====================================================
   MOBILE
   2 PRODUCTS VISIBLE
===================================================== */

@media (max-width: 900px) {

    .vp-products-grid {
        gap: 16px !important;
        padding-bottom: 18px !important;
    }

    .vp-products-grid .vp-product-card {
        flex: 0 0 calc((100% - 16px) / 2) !important;
        width: calc((100% - 16px) / 2) !important;
        min-width: calc((100% - 16px) / 2) !important;
        max-width: calc((100% - 16px) / 2) !important;
    }

    .vp-products-grid .vp-product-image {
        height: 260px !important;
    }

    .vp-products-grid .vp-product-image img {
        transform: scale(1.12) !important;
    }

    .vp-products-grid .vp-product-content {
        padding: 20px 18px 24px !important;
    }

}


/* SMALL MOBILE */

@media (max-width: 600px) {

    .vp-products-grid {
        gap: 14px !important;
    }

    .vp-products-grid .vp-product-card {
        flex: 0 0 calc((100% - 14px) / 2) !important;
        width: calc((100% - 14px) / 2) !important;
        min-width: calc((100% - 14px) / 2) !important;
        max-width: calc((100% - 14px) / 2) !important;
    }

    .vp-products-grid .vp-product-image {
        height: 220px !important;
    }

    .vp-products-grid .vp-product-image img {
        transform: scale(1.08) !important;
    }

    .vp-products-grid .vp-product-content {
        padding: 18px 14px 22px !important;
    }

    .vp-products-grid .vp-product-content h3 {
        font-size: 18px !important;
        line-height: 1.25 !important;
    }

}
/* =====================================================
   SHOP PAGINATION — VISIONPRO NDT
===================================================== */

.vp-products-catalogue .woocommerce-pagination {
    margin: 45px 0 70px !important;
    text-align: center !important;
}

.vp-products-catalogue .woocommerce-pagination ul.page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

.vp-products-catalogue .woocommerce-pagination ul.page-numbers li {
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vp-products-catalogue .woocommerce-pagination
.page-numbers {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 13px !important;
    border: 1px solid #d8e1ee !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #102a56 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all .25s ease !important;
    box-sizing: border-box !important;
}

.vp-products-catalogue .woocommerce-pagination
.page-numbers:hover {
    background: #1264d8 !important;
    border-color: #1264d8 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.vp-products-catalogue .woocommerce-pagination
.page-numbers.current {
    background: #1264d8 !important;
    border-color: #1264d8 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(18,100,216,.18) !important;
}

.vp-products-catalogue .woocommerce-pagination
.page-numbers.next,
.vp-products-catalogue .woocommerce-pagination
.page-numbers.prev {
    padding: 0 16px !important;
    font-size: 18px !important;
}

/* Mobile */
@media (max-width: 600px) {

    .vp-products-catalogue .woocommerce-pagination {
        margin: 30px 0 50px !important;
    }

    .vp-products-catalogue .woocommerce-pagination
    .page-numbers {
        min-width: 38px !important;
        height: 38px !important;
        padding: 0 10px !important;
        font-size: 13px !important;
    }

}
