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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', system-ui, sans-serif;
    color: #1e293b;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img,
video {
    display: block;
    max-width: 100%;
}

:root {
    --red: #e11d48;
    --red-dark: #be123c;
    --red-light: #fff0f3;
    --green: #00c96b;
    --green-dark: #00a857;
    --navy: #0f172a;
    --slate: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08), 0 12px 32px rgba(0, 0, 0, .06);
}

.vts-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ── TYPOGRAPHY ── */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(225, 29, 72, .08);
    padding: .32rem 1.1rem;
    border-radius: 999px;
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.85rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.section-title span {
    color: var(--red);
}

.section-sub {
    color: var(--slate);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-top: .65rem;
}

.section-sub-narrow {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.section-sub-client {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

:focus-visible {
    outline: 3px solid rgba(225, 29, 72, .35);
    outline-offset: 3px;
}

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

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

/* ════════════════════
       NAVBAR
    ════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .35s, border-color .35s, box-shadow .35s;
    padding: .85rem 0;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-color: var(--border);
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vts-logo-svg {
    display: block;
    height: 38px;
    width: auto;
}

.logo-white {
    display: block;
}

.logo-dark {
    display: none;
}

#navbar.scrolled .logo-white {
    display: none;
}

#navbar.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin-left: auto;
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    padding: .52rem .95rem;
    border-radius: 7px;
    transition: all .18s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

#navbar.scrolled .nav-link {
    color: var(--slate);
}

#navbar.scrolled .nav-link:hover {
    color: var(--navy);
    background: #f1f5f9;
}

.nav-link svg {
    transition: transform .2s;
}

.nav-link:hover svg {
    transform: rotate(180deg);
}

.nav-enquiry {
    border: 1.5px solid rgba(255, 255, 255, .7);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700;
    padding: .48rem 1.2rem;
    font-size: .9rem;
    transition: all .3s;
    font-family: 'Roboto', sans-serif;
    background: rgba(255, 255, 255, .1);
    white-space: nowrap;
}

.nav-enquiry:hover {
    background: rgba(255, 255, 255, .22);
}

#navbar.scrolled .nav-enquiry {
    background: var(--red);
    border-color: var(--red);
    color: #fff !important;
}

#navbar.scrolled .nav-enquiry:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

/* Dropdown — fixed hover gap + click friendly */
/* FOUC-safe dropdown defaults are also injected inline in every HTML <head>. */
.dropdown-wrap {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.dropdown-wrap::after {
    content: '';
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 16px;
    z-index: 98;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    width: 286px;
    padding: .72rem;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .14);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(226, 232, 240, .9);
    border-top: 1px solid rgba(226, 232, 240, .9);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-wrap:hover .dropdown-menu,
.dropdown-wrap:focus-within .dropdown-menu,
.dropdown-wrap.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-wrap:hover .nav-link svg,
.dropdown-wrap:focus-within .nav-link svg,
.dropdown-wrap.open .nav-link svg {
    transform: rotate(180deg);
}

.drop-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: .72rem .82rem;
    border-radius: 12px;
    transition: background .15s ease, transform .15s ease;
    cursor: pointer;
}

.drop-item:hover {
    background: var(--bg);
    transform: translateX(2px);
}

.drop-ico {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red-light), #fff);
    border: 1px solid rgba(225, 29, 72, .1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.drop-label {
    font-size: .86rem;
    font-weight: 800;
    color: var(--navy);
}

.drop-sub {
    font-size: .74rem;
    color: var(--slate);
    margin-top: 2px;
    line-height: 1.35;
}

.drop-divider {
    height: 1px;
    background: var(--border);
    margin: .45rem .2rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    margin-left: auto;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}

#navbar.scrolled .hamburger span {
    background: var(--navy);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════
       MOBILE DRAWER — premium card style
    ════════════════════ */
/* Load-safe mobile drawer defaults: prevents menu flash/show before CSS/JS finish loading */
.mobile-overlay[hidden],
.mobile-menu[hidden] {
    display: none !important;
}

/* Closed by default even if the hidden attribute is stripped by cache/minifier/browser restore */
.mobile-overlay:not(.open),
.mobile-menu:not(.open) {
    visibility: hidden;
    pointer-events: none;
}

.mobile-overlay.open,
.mobile-menu.open {
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(410px, calc(100vw - 24px));
    background: #f8fafc;
    z-index: 9999;
    transform: translateX(calc(100% + 18px));
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 24px;
    box-shadow: -18px 24px 70px rgba(2, 6, 23, .32);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mob-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px;
    background:
        radial-gradient(circle at 85% 0%, rgba(225, 29, 72, .45), transparent 38%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    flex-shrink: 0;
    overflow: hidden;
}

.mob-head::after {
    content: '24/7 Support';
    position: absolute;
    left: 22px;
    bottom: 14px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.mob-head svg {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.mob-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: all .2s ease;
    flex-shrink: 0;
}

.mob-close:hover {
    background: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

.mob-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 6px;
}

.mob-nav-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 3px 8px 10px;
}

.mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    margin-bottom: 8px;
    padding: 13px 15px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: border-color .18s, background .18s, color .18s, transform .18s, box-shadow .18s;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}

.mob-link:hover,
.mob-link.expanded {
    border-color: rgba(225, 29, 72, .25);
    background: #fff7f9;
    color: var(--red);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(225, 29, 72, .08);
}

.mob-arrow {
    width: 27px;
    height: 27px;
    border-radius: 9px;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #64748b;
    transition: all .25s;
    flex-shrink: 0;
}

.mob-link.expanded .mob-arrow {
    transform: rotate(90deg);
    background: var(--red);
    color: #fff;
}

.mob-sub {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.mob-sub.open {
    max-height: 720px;
}

.mob-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 2px 0 12px;
}

.mob-sub-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 104px;
    padding: 12px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all .16s ease;
}

.mob-sub-item:hover {
    border-color: rgba(225, 29, 72, .36);
    background: #fff7f9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
}

.mob-sub-ico {
    width: 32px;
    height: 32px;
    background: var(--red-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: 1px solid rgba(225, 29, 72, .1);
}

.mob-sub-name {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    font-family: 'Roboto', sans-serif;
    line-height: 1.25;
}

.mob-sub-desc {
    font-size: 10.5px;
    color: #64748b;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.mob-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0 14px;
}

.mob-foot {
    padding: 13px 14px 16px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    flex-shrink: 0;
}

.mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 45px;
    padding: 12px 10px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 12.5px;
    font-family: 'Roboto', sans-serif;
    border: none;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    text-decoration: none;
    text-align: center;
}

.mob-btn:hover {
    transform: translateY(-1px);
}

.mob-btn-red {
    background: var(--red);
    color: #fff;
    grid-column: span 2;
}

.mob-btn-red:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 24px rgba(225, 29, 72, .22);
}

.mob-btn-green {
    background: var(--green);
    color: #fff;
}

.mob-btn-green:hover {
    background: var(--green-dark);
    box-shadow: 0 10px 24px rgba(0, 201, 107, .18);
}

.mob-btn-ghost {
    background: #f8fafc;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

.mob-btn-ghost:hover {
    background: #fff;
}

@media (min-width: 1025px) {
    .mobile-overlay,
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 8px;
        right: 8px;
        bottom: 8px;
        width: calc(100vw - 16px);
        border-radius: 20px;
    }

    .mob-sub-grid {
        grid-template-columns: 1fr;
    }

    .mob-sub-item {
        min-height: auto;
    }
}

/* ════════════════════
       HERO
    ════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--navy);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-img {
    position: absolute;
    top: -6%;
    left: -6%;
    width: 112%;
    height: 112%;
    background-size: cover;
    background-position: center;
}

.hs1 .hero-slide-img {
    background-image: url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hs2 .hero-slide-img {
    background-image: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hs3 .hero-slide-img {
    background-image: url('https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hero-slide.active .hero-slide-img,
.hero-slide-img.animate-kb {
    animation: kb 9s ease forwards;
}

@keyframes kb {
    0% {
        transform: scale(1) translate(0, 0)
    }

    100% {
        transform: scale(1.09) translate(-1.5%, -1%)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .78) 38%, rgba(15, 23, 42, .42) 68%, rgba(15, 23, 42, .28) 100%), radial-gradient(circle at 18% 45%, rgba(225, 29, 72, .28), transparent 36%), linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 74px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .38rem 1.15rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
    backdrop-filter: blur(8px);
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: .6;
        transform: scale(.85)
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.07;
    letter-spacing: -.02em;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
}

.hero h1 em {
    color: #ff5c7a;
    font-style: normal;
}

.hero-lead {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.1rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 2.6rem;
}

.btn-hero-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: .95rem 1.85rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .98rem;
    transition: all .2s;
    text-transform: uppercase;
}

.btn-hero-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 201, 107, .35);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    padding: .95rem 1.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .98rem;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: all .2s;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, .18);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.trust-avatars {
    display: flex;
}

.t-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    margin-left: -9px;
    flex-shrink: 0;
}

.t-avatar:first-child {
    margin-left: 0;
}

.av-blue {
    background: #2563eb
}

.av-green {
    background: #059669
}

.av-purple {
    background: #7c3aed
}

.av-orange {
    background: #d97706
}

.trust-txt {
    font-size: .84rem;
    color: rgba(255, 255, 255, .72);
}

.trust-txt strong {
    color: #fff;
}

.vid-controls {
    position: absolute;
    bottom: 2.25rem;
    right: 2.25rem;
    z-index: 3;
}

.vid-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.vid-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.vid-dot.active {
    width: 22px;
    background: #fff;
}

/* ════════════════════
       STATS BAR
    ════════════════════ */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.stat-item {
    padding: 1.2rem .75rem;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--bg);
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-num.accent {
    color: var(--red);
}

.stat-lbl {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--slate);
    margin-top: .32rem;
}

/* ════════════════════
       SECTIONS PADDING
    ════════════════════ */
.about-section,
.services-section,
.clients-section,
.vts-coverage-section,
.vts-clean-cta {
    padding: 100px 0;
}

/* ════════════════════
       ABOUT
    ════════════════════ */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.6rem 0;
}

.astat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem;
    text-align: center;
    transition: all .2s;
}

.astat:hover {
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, .08);
}

.astat-num {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.astat-num.accent {
    color: var(--red);
}

.astat-lbl {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--slate);
    margin-top: .3rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .72rem;
    margin-bottom: 1.6rem;
}

.feat-box {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem 1rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy);
    transition: all .2s;
    cursor: default;
}

.feat-box:hover {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(225, 29, 72, .08);
    transform: translateY(-2px);
}

.feat-ico {
    width: 36px;
    height: 36px;
    background: var(--red-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-why {
    font-size: .94rem;
    color: var(--slate);
    line-height: 1.82;
    padding: 1.1rem 1.35rem;
    border-left: 3px solid var(--red);
    background: rgba(225, 29, 72, .03);
    border-radius: 0 10px 10px 0;
    margin-top: 1.35rem;
}

.about-why strong {
    color: var(--navy);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.about-card {
    background: var(--navy);
    border-radius: 18px;
    padding: 1.85rem;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--red);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: .08;
}

.about-card-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.15rem;
    position: relative;
    z-index: 1;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .48rem;
    position: relative;
    z-index: 1;
}

.chip {
    display: inline-block;
    padding: .34rem 1rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 600;
}

.chip-default {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cbd5e1;
}

.chip-red {
    background: rgba(225, 29, 72, .18);
    border: 1px solid rgba(225, 29, 72, .35);
    color: #fca5a5;
}

.chip-green {
    background: rgba(0, 201, 107, .15);
    border: 1px solid rgba(0, 201, 107, .3);
    color: #6ee7b7;
}

.about-card-copy {
    margin-top: 1.3rem;
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.7rem;
}

.process-card-title {
    font-size: .9rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.15rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .74rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy);
}

.step-desc {
    font-size: .82rem;
    color: var(--slate);
    line-height: 1.65;
    margin-top: .22rem;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--navy);
    border-radius: 12px;
    padding: 1.1rem 1.35rem;
}

.trust-badge-green {
    margin-left: auto;
    background: var(--green);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    padding: .32rem .8rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* ════════════════════
       SERVICES
    ════════════════════ */
.services-section {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.25rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.85rem;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.svc-icon {
    width: 58px;
    height: 58px;
    background: var(--red-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.35rem;
}

.svc-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .55rem;
}

.svc-desc {
    font-size: .94rem;
    color: var(--slate);
    line-height: 1.75;
}

.svc-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: .24rem .72rem;
    border-radius: 5px;
    margin-top: .85rem;
}

.badge-hot {
    background: #fee2e2;
    color: #991b1b;
}

.badge-new {
    background: #dcfce7;
    color: #166534;
}

/* ════════════════════
       PRICING
    ════════════════════ */
.pricing-section {
    background: #fff;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin: 1.75rem 0 0;
}

.ptab {
    font-size: .88rem;
    font-weight: 700;
    padding: .55rem 1.4rem;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--slate);
    cursor: pointer;
    transition: all .18s;
}

.ptab.active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.pricing-group {
    margin-top: 2.75rem;
}

.pricing-group-head {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-group-head h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
}

.pricing-group-head h3 span {
    color: var(--red);
}

.pricing-group-head p {
    color: var(--slate);
    font-size: .92rem;
    margin-top: .35rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.price-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.7rem;
    position: relative;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.price-card.featured {
    border: 2px solid var(--red);
    box-shadow: 0 10px 32px rgba(225, 29, 72, .14);
}

.price-card-badge {
    position: absolute;
    top: -13px;
    right: 1.5rem;
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 999px;
}

.price-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .6rem;
}

.price-card-value {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: .2rem;
}

.price-card-value sup {
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: 2px;
}

.price-card-credits {
    font-size: .85rem;
    color: var(--slate);
    margin-bottom: 1.4rem;
}

.price-card-features {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
    flex-grow: 1;
}

.price-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .89rem;
    color: var(--slate);
    padding: .4rem 0;
    border-bottom: 1px dashed var(--border);
}

.price-card-features li:last-child {
    border-bottom: none;
}

.price-check {
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
}

.price-cross {
    color: #cbd5e1;
    font-weight: 900;
    flex-shrink: 0;
}

.price-card-cta {
    display: block;
    text-align: center;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    padding: .8rem 1rem;
    border-radius: 10px;
    transition: all .2s;
}

.price-card.featured .price-card-cta {
    background: var(--red);
}

.price-card-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════
       CLIENTS
    ════════════════════ */
.clients-section {
    background: #fff;
}

.industry-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin: 1.85rem 0 1.65rem;
}

.itab {
    padding: .42rem 1.1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--slate);
    background: #fff;
    cursor: pointer;
    transition: all .2s;
}

.itab.active,
.itab:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 2.25rem;
}

.client-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.65rem 1rem;
    text-align: center;
    transition: all .22s;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.client-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.client-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(225, 29, 72, .1);
    transform: translateY(-5px);
}

.client-card:hover::after {
    transform: scaleX(1);
}

.client-icon {
    font-size: 2.1rem;
    margin-bottom: .65rem;
}

.client-name {
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--navy);
}

.client-type {
    font-size: .72rem;
    color: var(--slate);
    margin-top: .28rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.client-tag {
    display: inline-block;
    margin-top: .65rem;
    font-size: .65rem;
    font-weight: 700;
    padding: .22rem .68rem;
    border-radius: 4px;
}

.tag-india {
    background: #fef3c7;
    color: #92400e
}

.tag-intl {
    background: #dbeafe;
    color: #1e40af
}

.tag-new {
    background: #dcfce7;
    color: #166534
}

.clients-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--navy);
    border-radius: 18px;
    padding: 1.9rem 2.25rem;
    margin-bottom: 2.75rem;
}

.cstat {
    text-align: center;
}

.cstat-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.cstat-num.r {
    color: #ff5c7a;
}

.cstat-lbl {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, .5);
    margin-top: .38rem;
}

.testi-head {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.testi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.55rem;
    transition: all .2s;
}

.testi-card:hover {
    border-color: var(--red);
    box-shadow: 0 6px 20px rgba(225, 29, 72, .07);
    transform: translateY(-3px);
}

.stars {
    color: #f59e0b;
    font-size: .9rem;
    margin-bottom: .45rem;
    letter-spacing: 1px;
}

.testi-quote {
    font-size: 2.6rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: .28rem;
    font-family: Georgia, serif;
}

.testi-text {
    font-size: .88rem;
    color: var(--slate);
    line-height: 1.78;
    margin-bottom: 1.1rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-av-name {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy);
}

.testi-av-co {
    font-size: .73rem;
    color: var(--slate);
}

/* ════════════════════
   COVERAGE SECTION — LIGHT PREMIUM REDESIGN
════════════════════ */

.vts-coverage-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(225, 29, 72, .07), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(0, 201, 107, .07), transparent 28%),
        var(--bg);
    position: relative;
    overflow: hidden;
}

.vts-coverage-head {
    max-width: 760px;
    margin: 0 auto 2.2rem;
    text-align: center;
}

.vts-coverage-head .section-sub {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Top Stats */
.cov-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.cov-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    position: relative;
    overflow: hidden;
}

.cov-stat::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    opacity: .9;
}

.cov-stat:hover {
    border-color: rgba(225, 29, 72, .22);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .09);
}

.cov-stat-num {
    font-size: clamp(1.65rem, 2.3vw, 2.35rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.cov-stat-num.r {
    color: var(--red);
}

.cov-stat-lbl {
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--slate);
    margin-top: .45rem;
}

/* Main Layout */
.vts-coverage-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 1.35rem;
    align-items: stretch;
}

/* Left Intro Card — no dark background */
.vts-coverage-intro {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .07);
    display: flex;
    flex-direction: column;
}

.vts-coverage-intro::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -95px;
    top: -110px;
    background: radial-gradient(circle, rgba(225, 29, 72, .13), transparent 68%);
    pointer-events: none;
}

.vts-coverage-intro::after {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 999px 999px 0 0;
}

/* Small Badge */
.cov-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    align-self: flex-start;
    background: rgba(225, 29, 72, .08);
    border: 1px solid rgba(225, 29, 72, .18);
    color: var(--red);
    border-radius: 999px;
    padding: .42rem 1rem;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
    position: relative;
    z-index: 1;
}

.cov-pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 201, 107, .12);
    animation: pulse 2s infinite;
}

.vts-coverage-intro h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.16;
    text-transform: uppercase;
    letter-spacing: -.025em;
    margin-bottom: .9rem;
    position: relative;
    z-index: 1;
}

.vts-coverage-intro h3 span {
    color: var(--red);
}

.vts-coverage-intro p {
    color: var(--slate);
    font-size: .95rem;
    line-height: 1.78;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

/* Mini Stats */
.cov-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .65rem;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

.cov-mini-stat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: .9rem .55rem;
    text-align: center;
    min-width: 0;
}

.cov-mini-stat:hover {
    background: #fff;
    border-color: rgba(225, 29, 72, .24);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.cov-mini-stat strong {
    display: block;
    color: var(--navy);
    font-size: clamp(.95rem, 1.4vw, 1.25rem);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.cov-mini-stat span {
    display: block;
    color: var(--slate);
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .45px;
    margin-top: .34rem;
    white-space: nowrap;
}

/* Features */
.cov-features {
    display: grid;
    gap: .7rem;
    margin-bottom: 1.45rem;
    position: relative;
    z-index: 1;
}

.cov-feature {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .72rem .85rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}

.cov-feature:hover {
    border-color: rgba(0, 201, 107, .25);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.cov-feature-ico {
    width: 25px;
    height: 25px;
    background: rgba(0, 201, 107, .1);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* CTA Button */
.vts-coverage-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    padding: 15px 22px;
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .22s;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.vts-coverage-btn:hover {
    background: var(--red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(225, 29, 72, .25);
}

/* Right Side */
.cov-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Tabs */
.cov-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: .55rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.cov-tab {
    padding: .82rem 1rem;
    border-radius: 13px;
    font-size: .88rem;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    color: var(--slate);
    border: none;
    background: transparent;
    font-family: 'Roboto', sans-serif;
}

.cov-tab:hover {
    color: var(--red);
    background: var(--red-light);
}

.cov-tab.active {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 22px rgba(225, 29, 72, .22);
}

/* Coverage List Card */
.vts-coverage-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.45rem;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .07);
}

.vts-coverage-card-head {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vts-coverage-card-head span:first-child {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.cov-count-badge {
    background: rgba(225, 29, 72, .08);
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    padding: .35rem .85rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* Search */
.cov-search {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: .85rem 1rem;
    font-size: .9rem;
    font-family: 'Roboto', sans-serif;
    color: var(--navy);
    background: var(--bg);
    outline: none;
    margin-bottom: 1rem;
    transition: all .2s;
}

.cov-search:focus {
    border-color: rgba(225, 29, 72, .45);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, .08);
}

/* City/Country Links as Pills */
.vts-coverage-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    max-height: 410px;
    overflow-y: auto;
    padding-right: .25rem;
}

.vts-coverage-list::-webkit-scrollbar {
    width: 6px;
}

.vts-coverage-list::-webkit-scrollbar-thumb {
    background: rgba(225, 29, 72, .28);
    border-radius: 999px;
}

.vts-coverage-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    min-height: 42px;
    padding: .65rem .75rem;
    border-radius: 13px;
    transition: all .18s;
}

.vts-coverage-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    margin-right: 7px;
    flex-shrink: 0;
}

.vts-coverage-list a:hover {
    color: var(--red);
    background: #fff;
    border-color: rgba(225, 29, 72, .28);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    padding-left: .75rem;
}

/* Panels */
.cov-panel {
    display: none;
}

.cov-panel.active {
    display: block;
}

/* WhatsApp Strip */
.cov-wa-strip {
    background: #fff;
    border: 1px solid rgba(0, 201, 107, .22);
    border-radius: 18px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.cov-wa-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(0, 201, 107, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    flex-shrink: 0;
}

.cov-wa-text {
    flex: 1;
}

.cov-wa-text strong {
    display: block;
    font-size: .92rem;
    font-weight: 900;
    color: var(--navy);
}

.cov-wa-text span {
    font-size: .8rem;
    color: var(--slate);
}

.cov-wa-btn {
    background: var(--green);
    color: #fff;
    font-size: .8rem;
    font-weight: 900;
    padding: .68rem 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
}

.cov-wa-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 201, 107, .2);
}

/* Responsive */
@media (max-width: 1100px) {
    .vts-coverage-layout {
        grid-template-columns: 1fr;
    }

    .vts-coverage-list {
        max-height: none;
    }
}

@media (max-width: 900px) {
    .cov-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .vts-coverage-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .vts-coverage-head {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .cov-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }

    .cov-stat {
        padding: 1.05rem .65rem;
        border-radius: 16px;
    }

    .vts-coverage-intro,
    .vts-coverage-card {
        border-radius: 20px;
        padding: 1.25rem;
    }

    .cov-mini-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cov-mini-stat strong {
        font-size: 1.05rem;
    }

    .cov-mini-stat span {
        font-size: .62rem;
    }

    .cov-tabs {
        grid-template-columns: 1fr;
    }

    .vts-coverage-list {
        grid-template-columns: 1fr;
        max-height: 360px;
    }

    .cov-wa-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .cov-wa-btn {
        width: 100%;
        text-align: center;
    }
}

/* ════════════════════
       CTA FORM
    ════════════════════ */
.vts-clean-cta {
    background: #fff;
}

.vts-clean-cta-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: stretch;
    background: var(--navy);
    border-radius: 26px;
    padding: 64px 68px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .14);
}

.vts-clean-cta-box::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -180px;
    background: radial-gradient(circle, rgba(225, 29, 72, .22), transparent 65%);
    pointer-events: none;
}

.vts-clean-cta-content,
.vts-enquiry-card {
    position: relative;
    z-index: 1;
}

.vts-clean-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.vts-enquiry-card {
    align-self: stretch;
    height: 100%;
}

.vts-clean-cta-tag {
    display: inline-flex;
    align-items: flex-start;
    width: fit-content;
    background: rgba(225, 29, 72, .14);
    color: #fda4af;
    border: 1px solid rgba(225, 29, 72, .28);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.vts-clean-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.65rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.vts-clean-cta p {
    color: rgba(255, 255, 255, .62);
    font-size: 1.02rem;
    line-height: 1.78;
    margin-bottom: 26px;
}

.vts-clean-cta-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.vts-clean-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: .9rem;
    font-weight: 700;
}

.vts-clean-cta-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.vts-enquiry-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

.vts-enquiry-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.vts-enquiry-card>p {
    color: var(--slate);
    font-size: .92rem;
    line-height: 1.62;
    margin-bottom: 20px;
}

.vts-enquiry-form {
    display: grid;
    gap: 13px;
}

.vts-form-group input,
.vts-form-group select,
.vts-form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #f8fafc;
    color: var(--navy);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: .94rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: all .2s ease;
}

.vts-form-group textarea {
    resize: none;
}

.vts-form-group input:focus,
.vts-form-group select:focus,
.vts-form-group textarea:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, .08);
}

.vts-enquiry-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: var(--red);
    color: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: .94rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .22s ease;
    width: 100%;
}

.vts-enquiry-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(225, 29, 72, .24);
}

.form-msg {
    display: none;
    padding: 11px 15px;
    border-radius: 10px;
    font-size: .87rem;
    font-weight: 600;
    margin-top: 6px;
}

.form-msg.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}

.form-msg.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ════════════════════
       FOOTER — NEW
    ════════════════════ */
.vts-footer {
    background: #0a1628;
    color: rgba(255, 255, 255, .6);
    font-family: 'Roboto', sans-serif;
}

/* Main footer */
.footer-main {
    padding: 70px 48px 52px;
    max-width: 1420px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.9fr 1fr 1fr 1fr 1.3fr;
    gap: 52px;
    align-items: flex-start;
    margin-bottom: 52px;
}

/* Brand */
.footer-brand-desc {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    line-height: 1.82;
    margin: 18px 0 24px;
    max-width: 310px;
}

.footer-socials {
    display: flex;
    gap: 11px;
}

.fsoc {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, .65);
}

.fsoc:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 201, 107, .12);
    border: 1px solid rgba(0, 201, 107, .25);
    border-radius: 999px;
    padding: .3rem .9rem;
    font-size: .72rem;
    font-weight: 700;
    color: #6ee7b7;
    margin-top: 16px;
}

.fbadge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Nav cols */
.footer-col h4 {
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 11px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, .52);
    font-size: .88rem;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col a::before {
    content: '›';
    color: var(--red);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact card (replaces newsletter) */
.footer-contact-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px 28px 30px;
    margin-top: -2px;
    min-height: auto;
}

.footer-contact-card .footer-title {
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(225, 29, 72, .14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-contact-text {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .86);
    line-height: 1.4;
}

.footer-whatsapp-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 11px;
    margin-top: 8px;
}

.footer-contact-card h5 {
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 11px;
}

.footer-contact-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.fcc-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
}

.fcc-row:last-child {
    margin-bottom: 0;
}

.fcc-ico {
    width: 34px;
    height: 34px;
    background: rgba(225, 29, 72, .15);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.fcc-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 3px;
}

.fcc-value {
    font-size: .86rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    line-height: 1.5;
}

.fcc-value a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    transition: color .2s;
}

.fcc-value a:hover {
    color: #fff;
}

.fcc-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: .72rem;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 16px;
    transition: all .2s;
}

.fcc-wa-btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* Divider & bottom */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-bottom-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: .76rem;
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .8);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, .2);
}

.footer-pay {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fpay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 11px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .62);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .2s;
}

.fpay:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}


/* Small utility classes added after removing Bootstrap CSS */
.text-uppercase {
    text-transform: uppercase;
}

.fw-bold {
    font-weight: 700;
}

.text-red-soft {
    color: #ff5c7a;
}

.trust-white {
    color: rgba(255, 255, 255, .72);
}

.trust-white strong {
    color: #fff;
}

/* ════════════════════
       RESPONSIVE
    ════════════════════ */
@media (max-width: 1280px) {
    .vts-container {
        max-width: 100%;
        padding-left: 36px;
        padding-right: 36px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-grid>div:first-child {
        grid-column: span 2;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-main {
        padding: 64px 36px 48px;
    }
}

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

    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .vts-clean-cta-box {
        grid-template-columns: 1fr;
        padding: 48px 42px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

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

    .vts-coverage-layout {
        grid-template-columns: 1fr;
    }

    .cov-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .vts-coverage-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .vts-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero {
        height: auto;
        min-height: 100svh;
        max-height: none;
        padding: 120px 0 70px;
        align-items: center;
    }

    .hero-content {
        padding-top: 0;
    }

    .vid-controls {
        right: 22px;
        bottom: 22px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.1rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        border-top: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-section,
    .services-section,
    .clients-section,
    .vts-coverage-section,
    .vts-clean-cta {
        padding: 68px 0;
    }

    .vts-clean-cta-box {
        padding: 34px 26px;
        border-radius: 20px;
    }

    .footer-main {
        padding: 52px 22px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid>div:first-child {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-hero-green,
    .btn-hero-ghost {
        width: 100%;
        justify-content: center;
    }

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

    .stat-item:nth-child(5) {
        grid-column: span 2;
    }

    .clients-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

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

    .cov-mini-stats {
        grid-template-columns: repeat(4, minmax(64px, 1fr));
        gap: 6px;
    }

    .cov-mini-stat {
        padding: 10px 5px;
    }

    .cov-mini-stat strong {
        font-size: 13px;
    }

    .cov-mini-stat span {
        font-size: 8px;
        letter-spacing: .2px;
    }

    .cov-wa-strip {
        flex-wrap: wrap;
    }

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

    .astat:last-child {
        grid-column: span 2;
    }
}

.footer-grid {
    align-items: flex-start;
}

.footer-contact-col {
    align-self: flex-start;
}

.footer-contact-col .footer-contact-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 22px;
    margin-top: 22px;
}

.footer-contact-col h5 {
    font-size: .76rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 11px;
}

.footer-contact-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.fcc-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.fcc-row:last-of-type {
    margin-bottom: 0;
}

.fcc-ico {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(225, 29, 72, .15);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.fcc-label {
    font-size: .72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .38);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.fcc-value {
    font-size: .88rem;
    color: rgba(255, 255, 255, .86);
    font-weight: 600;
    line-height: 1.45;
}

.fcc-value a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.fcc-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: .78rem;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 20px;
    transition: all .2s;
}

.fcc-wa-btn:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* Footer Get In Touch alignment fix: same start line as Company / Services / Support */
.footer-contact-col .footer-contact-card {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.footer-contact-col h5 {
    margin-bottom: 18px !important;
}

.footer-contact-col .fcc-row {
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-col .fcc-ico {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 7px;
    font-size: .72rem;
    margin-top: 1px;
}

.footer-contact-col .fcc-label {
    font-size: .68rem;
    letter-spacing: .8px;
    margin-bottom: 2px;
}

.footer-contact-col .fcc-value {
    font-size: .86rem;
    line-height: 1.45;
}

.footer-contact-col .fcc-wa-btn {
    width: 100%;
    margin-top: 16px;
    min-height: 42px;
    padding: .68rem .9rem;
    border-radius: 9px;
}

.footer-contact-col .fcc-value a,
.footer-contact-col .fcc-value a:hover,
.footer-contact-col .fcc-value a:focus,
.footer-contact-col .fcc-value a:active {
    color: inherit !important;
    text-decoration: none !important;
    padding-left: 0 !important;
    background: transparent !important;
}

.footer-contact-col .fcc-value a::before {
    display: none !important;
    content: none !important;
}

.footer-contact-col .fcc-wa-btn::before,
.footer-contact-col .fcc-wa-btn::after {
    display: none !important;
    content: none !important;
}

.footer-contact-col .fcc-wa-btn {
    padding-left: .9rem !important;
}

/* ===== VTS page-type content differentiation ===== */
.vts-page-intent-section{position:relative;padding:90px 0;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);overflow:hidden}.vts-page-intent-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 12% 12%,rgba(22,163,74,.08),transparent 28%),radial-gradient(circle at 88% 16%,rgba(220,38,38,.07),transparent 26%);pointer-events:none}.vts-page-intent-section .vts-container{position:relative;z-index:1}.vts-intent-head{max-width:880px;margin:0 auto 34px;text-align:center}.vts-intent-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.vts-intent-card{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;padding:26px;box-shadow:0 18px 45px rgba(15,23,42,.07);transition:.25s ease}.vts-intent-card:hover{transform:translateY(-5px);box-shadow:0 24px 60px rgba(15,23,42,.1)}.vts-intent-ico{width:48px;height:48px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(135deg,#16a34a,#22c55e);color:#fff;font-size:1.35rem;margin-bottom:16px}.vts-intent-card:nth-child(2) .vts-intent-ico{background:linear-gradient(135deg,#dc2626,#f97316)}.vts-intent-card:nth-child(3) .vts-intent-ico{background:linear-gradient(135deg,#0f172a,#334155)}.vts-intent-card h3{font-size:1.13rem;line-height:1.35;margin:0 0 10px;color:#0f172a}.vts-intent-card p{font-size:.94rem;line-height:1.75;color:#475569;margin:0}.vts-intent-points{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:28px}.vts-intent-pill{background:#0f172a;color:#e5e7eb;border-radius:18px;padding:18px 20px;font-size:.9rem;line-height:1.55}.vts-intent-pill strong{display:block;color:#fff;margin-bottom:4px}.vts-mini-faq{margin-top:28px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.vts-mini-faq article{background:rgba(255,255,255,.78);border:1px solid rgba(15,23,42,.08);border-radius:18px;padding:18px}.vts-mini-faq h4{font-size:.98rem;margin:0 0 8px;color:#111827}.vts-mini-faq p{font-size:.88rem;line-height:1.65;color:#64748b;margin:0}.vts-utility-strip{display:flex;gap:16px;align-items:center;justify-content:space-between;background:#0f172a;color:#fff;border-radius:24px;padding:24px 28px;margin-top:30px}.vts-utility-strip p{margin:0;color:#cbd5e1}.vts-utility-strip a{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 18px;border-radius:999px;background:#22c55e;color:#fff;text-decoration:none;font-weight:800;white-space:nowrap}.vts-template-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;background:rgba(34,197,94,.1);color:#166534;font-weight:800;font-size:.8rem;margin-bottom:14px}.vts-page-intent-section.vts-utility-template{background:linear-gradient(180deg,#f8fafc 0%,#fff 100%)}.vts-page-intent-section.vts-pricing-template .vts-intent-card:nth-child(1){border-top:4px solid #22c55e}.vts-page-intent-section.vts-pricing-template .vts-intent-card:nth-child(2){border-top:4px solid #ef4444}.vts-page-intent-section.vts-pricing-template .vts-intent-card:nth-child(3){border-top:4px solid #0f172a}@media(max-width:1024px){.vts-intent-grid,.vts-intent-points,.vts-mini-faq{grid-template-columns:1fr}.vts-page-intent-section{padding:64px 0}.vts-utility-strip{flex-direction:column;align-items:flex-start}}@media(max-width:575px){.vts-intent-card{padding:22px}.vts-utility-strip{padding:20px}.vts-intent-head{text-align:left}.vts-intent-head .section-title{text-align:left}}
