/* ==========================================================================
   VOYZO — Public Site Design System
   Brand anchors preserved: teal #39D3C3 (primary), deep blue #1E5AA8 (secondary)
   Performance notes: no @import, transform/opacity-only animations,
   all motion gated behind prefers-reduced-motion.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Brand — teal ramp */
    --teal-50:  #ecfdfa;
    --teal-100: #d1f8f1;
    --teal-200: #a7f0e5;
    --teal-300: #6fe3d5;
    --teal-400: #39D3C3;   /* PRIMARY BRAND */
    --teal-500: #1fbcac;
    --teal-600: #12998c;
    --teal-700: #0f7a71;

    /* Brand — blue ramp */
    --blue-100: #dbeafe;
    --blue-300: #7aa9e0;
    --blue-500: #2c6fc4;
    --blue-600: #1E5AA8;   /* SECONDARY BRAND */
    --blue-700: #17457f;
    --blue-900: #0b2340;

    /* Neutrals */
    --ink-900: #0a1424;
    --ink-800: #111c2e;
    --ink-700: #1f2937;
    --ink-600: #374151;
    --ink-500: #4b5563;
    --ink-400: #6b7280;
    --ink-300: #9ca3af;
    --ink-200: #d1d5db;
    --ink-100: #e9edf2;
    --ink-50:  #f4f7fa;
    --white:   #ffffff;

    /* Semantic aliases (legacy-compatible) */
    --primary: var(--teal-400);
    --secondary: var(--blue-600);
    --accent: var(--teal-400);
    --bg: var(--white);
    --section-bg: var(--ink-50);
    --border: var(--ink-100);
    --muted: var(--ink-400);
    --text-muted: var(--ink-400);
    --text-dark: var(--ink-900);
    --text-white: var(--white);

    /* Gradients */
    --grad-brand: linear-gradient(135deg, var(--blue-600) 0%, var(--teal-400) 100%);
    --grad-brand-rev: linear-gradient(135deg, var(--teal-400) 0%, var(--blue-600) 100%);
    --grad-deep: linear-gradient(150deg, #0b2340 0%, #123a63 45%, #12998c 100%);
    --grad-soft: linear-gradient(135deg, rgba(30,90,168,.10) 0%, rgba(57,211,195,.16) 100%);
    --voyzo-gradient: var(--grad-brand);
    --voyzo-gradient-soft: var(--grad-soft);

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-pill: 999px;

    /* Shadows — layered for realism */
    --sh-xs: 0 1px 2px rgba(11,35,64,.06);
    --sh-sm: 0 2px 8px rgba(11,35,64,.06), 0 1px 2px rgba(11,35,64,.04);
    --sh-md: 0 10px 30px rgba(11,35,64,.08), 0 2px 8px rgba(11,35,64,.04);
    --sh-lg: 0 24px 60px rgba(11,35,64,.12), 0 6px 18px rgba(11,35,64,.06);
    --sh-teal: 0 14px 34px rgba(31,188,172,.28);
    --sh-blue: 0 14px 34px rgba(30,90,168,.26);

    /* Motion */
    --ease-out: cubic-bezier(.22,.9,.31,1);
    --ease-spring: cubic-bezier(.34,1.4,.44,1);
    --t-fast: .18s;
    --t-mid: .32s;
    --t-slow: .6s;

    /* Layout */
    --wrap: 1240px;
    --nav-h: 76px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* <picture> is inline by default — make it transparent to layout so the
   inner <img> can fill sized containers (hero frame, card media, split art). */
picture { display: contents; }

a { color: var(--blue-600); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--teal-500); }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .6em;
    color: var(--ink-900);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.022em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--teal-200); color: var(--ink-900); }

:focus-visible {
    outline: 3px solid var(--teal-400);
    outline-offset: 3px;
    border-radius: 6px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SCALE (fluid)
   -------------------------------------------------------------------------- */
.v-display { font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.4rem); line-height: 1.04; letter-spacing: -.035em; font-weight: 900; }
.v-h1      { font-size: clamp(2rem, 1.3rem + 3vw, 3.2rem); }
.v-h2      { font-size: clamp(1.7rem, 1.15rem + 2.2vw, 2.6rem); }
.v-h3      { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.6rem); }
.v-lead    { font-size: clamp(1.02rem, .96rem + .35vw, 1.2rem); color: var(--ink-500); line-height: 1.7; }
.v-small   { font-size: .875rem; }
.v-muted   { color: var(--ink-400); }

.v-grad-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.v-wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 20px;
}

.v-section { padding: clamp(56px, 7vw, 104px) 0; position: relative; }
.v-section--tint { background: var(--ink-50); }
.v-section--dark { background: var(--grad-deep); color: rgba(255,255,255,.82); }
.v-section--dark h1, .v-section--dark h2,
.v-section--dark h3, .v-section--dark h4 { color: #fff; }

.v-head { max-width: 720px; margin: 0 auto clamp(34px, 4vw, 58px); text-align: center; }
.v-head--left { margin-inline: 0; text-align: left; }
.v-head p { color: var(--ink-400); font-size: 1.05rem; margin-top: .8rem; }
.v-section--dark .v-head p { color: rgba(255,255,255,.72); }

/* Eyebrow pill */
.v-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: var(--r-pill);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    color: var(--teal-700);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.v-eyebrow i { font-size: .82rem; }
.v-section--dark .v-eyebrow {
    background: rgba(57,211,195,.14);
    border-color: rgba(57,211,195,.32);
    color: var(--teal-300);
}

/* Grid helpers */
.v-grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.v-grid-2 { grid-template-columns: repeat(2, 1fr); }
.v-grid-3 { grid-template-columns: repeat(3, 1fr); }
.v-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
    .v-grid-3, .v-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .v-grid-2, .v-grid-3, .v-grid-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.v-btn {
    --btn-bg: var(--grad-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: 0;
    border-radius: var(--r-pill);
    background: var(--btn-bg);
    color: #fff;
    font-size: .96rem;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--sh-blue);
    transition: transform var(--t-mid) var(--ease-spring),
                box-shadow var(--t-mid) var(--ease-out);
}
.v-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-brand-rev);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--t-mid) var(--ease-out);
}
.v-btn:hover { transform: translateY(-3px); color: #fff; box-shadow: var(--sh-teal); }
.v-btn:hover::after { opacity: 1; }
.v-btn:active { transform: translateY(-1px); }

.v-btn--ghost {
    background: transparent;
    color: var(--blue-600);
    border: 2px solid var(--ink-100);
    box-shadow: none;
}
.v-btn--ghost::after { display: none; }
.v-btn--ghost:hover {
    color: var(--teal-600);
    border-color: var(--teal-300);
    background: var(--teal-50);
    box-shadow: var(--sh-sm);
}

.v-btn--light {
    background: #fff;
    color: var(--blue-600);
    box-shadow: var(--sh-md);
}
.v-btn--light::after { display: none; }
.v-btn--light:hover { color: var(--teal-600); }

.v-btn--lg { padding: 17px 36px; font-size: 1.03rem; }
.v-btn--sm { padding: 10px 20px; font-size: .875rem; }
.v-btn--block { width: 100%; }

/* Arrow that slides on hover */
.v-btn .v-arrow { transition: transform var(--t-mid) var(--ease-spring); }
.v-btn:hover .v-arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. TOP STRIP + NAVBAR
   -------------------------------------------------------------------------- */
.v-topstrip {
    background: var(--grad-brand);
    color: rgba(255,255,255,.94);
    font-size: .82rem;
}
.v-topstrip .v-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-block: 8px;
}
.v-topstrip-mail {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.94); font-weight: 600;
}
.v-topstrip-mail:hover { color: #fff; }
.v-topstrip-social { display: flex; gap: 6px; }
.v-topstrip-social a {
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 7px;
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    transition: background var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.v-topstrip-social a:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-2px); }

@media (max-width: 600px) {
    .v-topstrip { font-size: .76rem; }
    .v-topstrip-social { display: none; }
    .v-topstrip .v-wrap { justify-content: center; }
}

.v-nav-shell {
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: background var(--t-mid) var(--ease-out),
                box-shadow var(--t-mid) var(--ease-out);
}
.v-nav-shell.is-stuck {
    background: rgba(255,255,255,.86);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 6px 26px rgba(11,35,64,.09);
}

.v-nav {
    max-width: var(--wrap);
    margin-inline: auto;
    height: var(--nav-h);
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.v-brand { display: inline-flex; align-items: center; gap: 11px; }
.v-brand img { height: 38px; width: auto; }
.v-brand-name {
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -.03em;
    background: var(--grad-brand);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}

.v-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.v-nav-links a {
    position: relative;
    display: block;
    padding: 9px 15px;
    border-radius: var(--r-pill);
    color: var(--ink-600);
    font-size: .94rem;
    font-weight: 600;
    transition: color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}
.v-nav-links a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 3px;
    width: 0; height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transform: translateX(-50%);
    transition: width var(--t-mid) var(--ease-out);
}
.v-nav-links a:hover { color: var(--ink-900); background: var(--ink-50); }
.v-nav-links a:hover::after,
.v-nav-links a.is-active::after { width: 22px; }
.v-nav-links a.is-active { color: var(--blue-600); font-weight: 700; }

/* Auth dropdown */
.v-nav-cta { display: flex; align-items: center; gap: 10px; position: relative; }
.v-authwrap { position: relative; }
.v-authmenu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 216px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity var(--t-mid) var(--ease-out),
                transform var(--t-mid) var(--ease-spring),
                visibility var(--t-mid);
}
.v-authwrap.is-open .v-authmenu,
.v-authwrap:hover .v-authmenu {
    opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.v-authmenu a {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 13px;
    border-radius: var(--r-sm);
    color: var(--ink-700);
    font-size: .92rem; font-weight: 600;
    transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.v-authmenu a i {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 9px;
    background: var(--teal-50);
    color: var(--teal-600);
    font-size: .82rem;
    transition: background var(--t-fast), color var(--t-fast);
}
.v-authmenu a:hover { background: var(--ink-50); color: var(--blue-600); }
.v-authmenu a:hover i { background: var(--grad-brand); color: #fff; }

/* Hamburger */
.v-burger {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--ink-100);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    place-items: center;
    gap: 5px;
}
.v-burger span {
    display: block;
    width: 19px; height: 2px;
    border-radius: 2px;
    background: var(--ink-700);
    transition: transform var(--t-mid) var(--ease-out), opacity var(--t-fast);
}
.v-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v-burger.is-open span:nth-child(2) { opacity: 0; }
.v-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.v-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    background: #fff;
    z-index: 1200;
    padding: 22px;
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform var(--t-slow) var(--ease-out);
    box-shadow: -20px 0 60px rgba(11,35,64,.16);
}
.v-drawer.is-open { transform: translateX(0); }
.v-drawer-top {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 18px; margin-bottom: 14px;
    border-bottom: 1px solid var(--ink-100);
}
.v-drawer-top span { font-weight: 800; color: var(--ink-900); }
.v-drawer-close {
    width: 40px; height: 40px;
    border: 1px solid var(--ink-100);
    border-radius: 11px;
    background: #fff; cursor: pointer;
    color: var(--ink-600); font-size: 1.05rem;
}
.v-drawer-links { display: flex; flex-direction: column; gap: 3px; }
.v-drawer-links > a {
    padding: 13px 14px;
    border-radius: var(--r-sm);
    color: var(--ink-700);
    font-weight: 600;
}
.v-drawer-links > a:hover,
.v-drawer-links > a.is-active { background: var(--teal-50); color: var(--teal-700); }
.v-drawer-sep {
    margin: 16px 0 10px;
    font-size: .74rem; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--ink-300);
}
.v-scrim {
    position: fixed; inset: 0;
    background: rgba(10,20,36,.45);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    z-index: 1150;
    opacity: 0; visibility: hidden;
    transition: opacity var(--t-mid) var(--ease-out), visibility var(--t-mid);
}
.v-scrim.is-open { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
    .v-nav-links, .v-nav-cta { display: none; }
    .v-burger { display: grid; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.v-hero {
    position: relative;
    padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 104px);
    background:
        radial-gradient(900px 480px at 88% -8%, rgba(57,211,195,.20), transparent 62%),
        radial-gradient(760px 420px at 4% 8%, rgba(30,90,168,.14), transparent 60%),
        linear-gradient(180deg, #fbfdff 0%, #f3f8fc 100%);
    overflow: hidden;
}

/* Animated ambient orbs — transform-only, GPU friendly */
.v-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    pointer-events: none;
    will-change: transform;
}
.v-orb--1 { width: 420px; height: 420px; top: -120px; right: -80px; background: rgba(57,211,195,.42); animation: orbFloat 17s var(--ease-out) infinite; }
.v-orb--2 { width: 330px; height: 330px; bottom: -110px; left: -70px; background: rgba(30,90,168,.30); animation: orbFloat 21s var(--ease-out) infinite reverse; }

@keyframes orbFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    50%      { transform: translate3d(-30px, 34px, 0) scale(1.09); }
}

.v-hero-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: clamp(30px, 4vw, 62px);
    position: relative;
    z-index: 2;
}

.v-hero h1 { margin-bottom: 1.1rem; }
.v-hero-sub {
    font-size: clamp(1.03rem, .96rem + .4vw, 1.22rem);
    color: var(--ink-500);
    max-width: 540px;
    margin-bottom: 1.9rem;
    line-height: 1.68;
}
.v-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 2.2rem; }

/* Trust strip */
.v-trust {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(18px, 3vw, 40px);
    padding-top: 1.6rem;
    border-top: 1px solid rgba(11,35,64,.09);
}
.v-trust-item strong {
    display: block;
    font-size: clamp(1.4rem, 1.15rem + .9vw, 1.9rem);
    font-weight: 900;
    color: var(--ink-900);
    letter-spacing: -.03em;
    line-height: 1.1;
}
.v-trust-item span { font-size: .84rem; color: var(--ink-400); font-weight: 600; }

/* Hero visual composition */
.v-hero-art { position: relative; }
.v-hero-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    aspect-ratio: 4 / 3.4;
    background: linear-gradient(140deg, var(--blue-600), var(--teal-400));
}
.v-hero-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Floating info chips over hero art */
.v-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 17px;
    background: rgba(255,255,255,.94);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink-800);
    white-space: nowrap;
    animation: chipBob 5.5s var(--ease-out) infinite;
}
.v-chip i {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: var(--grad-brand);
    color: #fff;
    font-size: .88rem;
}
.v-chip small { display: block; font-size: .72rem; color: var(--ink-400); font-weight: 600; }
.v-chip--a { top: 13%; left: -26px; }
.v-chip--b { bottom: 14%; right: -18px; animation-delay: 1.6s; }

@keyframes chipBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-11px); }
}

@media (max-width: 991px) {
    .v-hero-grid { grid-template-columns: 1fr; }
    .v-hero-art { order: -1; max-width: 520px; margin-inline: auto; }
    .v-hero-sub { margin-inline: auto; }
    .v-hero { text-align: center; }
    .v-hero-actions, .v-trust { justify-content: center; }
    .v-chip--a { left: 6px; }
    .v-chip--b { right: 6px; }
}
@media (max-width: 520px) {
    .v-chip { display: none; }
}

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.v-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    padding: 26px;
    overflow: hidden;
    transition: transform var(--t-mid) var(--ease-out),
                box-shadow var(--t-mid) var(--ease-out),
                border-color var(--t-mid) var(--ease-out);
}
.v-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow) var(--ease-out);
}
.v-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--teal-200);
}
.v-card:hover::before { transform: scaleX(1); }

.v-card-icon {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: var(--r-md);
    background: var(--teal-50);
    color: var(--teal-600);
    font-size: 1.28rem;
    margin-bottom: 16px;
    transition: background var(--t-mid) var(--ease-out),
                color var(--t-mid) var(--ease-out),
                transform var(--t-mid) var(--ease-spring);
}
.v-card:hover .v-card-icon {
    background: var(--grad-brand);
    color: #fff;
    transform: scale(1.08) rotate(-6deg);
}
.v-card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.v-card p { color: var(--ink-400); font-size: .93rem; margin: 0; }

/* Service card with image */
.v-service {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.v-service:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.v-service-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--ink-50);
}
.v-service-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease-out);
}
.v-service:hover .v-service-media img { transform: scale(1.07); }
.v-service-tag {
    position: absolute; top: 13px; left: 13px;
    padding: 6px 13px;
    border-radius: var(--r-pill);
    background: rgba(255,255,255,.94);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    font-size: .74rem; font-weight: 800;
    color: var(--teal-700);
    letter-spacing: .04em; text-transform: uppercase;
}
.v-service-body { padding: 20px 22px 24px; }
.v-service-body h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.v-service-body p { font-size: .9rem; color: var(--ink-400); margin-bottom: 1rem; }
.v-service-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid var(--ink-100);
}
.v-price { font-weight: 900; color: var(--ink-900); font-size: 1.02rem; }
.v-price small { font-size: .76rem; color: var(--ink-400); font-weight: 600; }
.v-service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .86rem; font-weight: 700; color: var(--teal-600);
}
.v-service-link i { transition: transform var(--t-mid) var(--ease-spring); }
.v-service:hover .v-service-link i { transform: translateX(4px); }

/* Numbered step card */
.v-step { position: relative; padding: 30px 24px 26px; text-align: center; }
.v-step-num {
    width: 62px; height: 62px;
    margin: 0 auto 18px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--teal-200);
    color: var(--teal-600);
    font-size: 1.3rem; font-weight: 900;
    box-shadow: var(--sh-sm);
    position: relative; z-index: 2;
    transition: transform var(--t-mid) var(--ease-spring),
                background var(--t-mid) var(--ease-out),
                color var(--t-mid) var(--ease-out);
}
.v-step:hover .v-step-num {
    background: var(--grad-brand);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
}
.v-step h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.v-step p { font-size: .91rem; color: var(--ink-400); margin: 0; }

/* Connecting dashed line between steps (desktop) */
.v-steps { position: relative; }
.v-steps::before {
    content: '';
    position: absolute;
    top: 61px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal-200) 0 8px, transparent 8px 17px);
    z-index: 0;
}
@media (max-width: 991px) { .v-steps::before { display: none; } }

/* Stat tile */
.v-stat { text-align: center; padding: 26px 16px; }
.v-stat strong {
    display: block;
    font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--teal-300) 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}
.v-stat span {
    display: block;
    margin-top: 9px;
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.68);
}

/* Testimonial */
.v-quote {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.v-quote:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.v-stars { color: #f5a623; font-size: .9rem; letter-spacing: 2px; margin-bottom: 13px; }
.v-quote p {
    font-size: .96rem;
    color: var(--ink-600);
    line-height: 1.72;
    flex: 1;
    margin-bottom: 20px;
}
.v-quote-who { display: flex; align-items: center; gap: 12px; }
.v-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--grad-brand);
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    flex-shrink: 0;
}
.v-quote-who b { display: block; font-size: .92rem; color: var(--ink-900); }
.v-quote-who small { color: var(--ink-400); font-size: .8rem; }

/* Feature row (icon + text, left aligned) */
.v-feature { display: flex; gap: 16px; align-items: flex-start; }
.v-feature-ico {
    flex-shrink: 0;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 13px;
    background: var(--teal-50);
    color: var(--teal-600);
    font-size: 1.05rem;
}
.v-section--dark .v-feature-ico {
    background: rgba(57,211,195,.16);
    color: var(--teal-300);
}
.v-feature h4 { font-size: 1.03rem; margin-bottom: .3rem; }
.v-feature p { font-size: .91rem; color: var(--ink-400); margin: 0; }
.v-section--dark .v-feature p { color: rgba(255,255,255,.66); }

/* --------------------------------------------------------------------------
   9. CTA BAND
   -------------------------------------------------------------------------- */
.v-cta {
    position: relative;
    border-radius: var(--r-xl);
    padding: clamp(38px, 5vw, 68px);
    background: var(--grad-deep);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--sh-lg);
}
.v-cta::before {
    content: '';
    position: absolute;
    width: 460px; height: 460px;
    top: -180px; right: -110px;
    border-radius: 50%;
    background: rgba(57,211,195,.24);
    filter: blur(70px);
}
.v-cta > * { position: relative; z-index: 2; }
.v-cta h2 { color: #fff; margin-bottom: .7rem; }
.v-cta p { color: rgba(255,255,255,.76); max-width: 560px; margin: 0 auto 1.9rem; }
.v-cta-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.v-footer { background: var(--ink-900); color: rgba(255,255,255,.62); }
.v-footer-main { padding: clamp(46px, 6vw, 76px) 0 40px; }
.v-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1.3fr;
    gap: clamp(26px, 3vw, 46px);
}
.v-footer .v-brand-name { font-size: 1.28rem; }
.v-footer p { font-size: .91rem; line-height: 1.72; }
.v-footer h6 {
    color: #fff;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.v-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.v-footer-links a { color: rgba(255,255,255,.62); font-size: .91rem; }
.v-footer-links a:hover { color: var(--teal-300); padding-left: 4px; }
.v-footer-links a { transition: color var(--t-fast) var(--ease-out), padding-left var(--t-fast) var(--ease-out); }

.v-social { display: flex; gap: 9px; margin-top: 20px; }
.v-social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.75);
    font-size: .92rem;
    transition: transform var(--t-mid) var(--ease-spring),
                background var(--t-mid) var(--ease-out), color var(--t-mid);
}
.v-social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-4px); }

.v-appbtn {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 17px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    margin-bottom: 11px;
    transition: background var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.v-appbtn:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); color: #fff; }
.v-appbtn i { font-size: 1.5rem; }
.v-appbtn small { display: block; font-size: .68rem; opacity: .66; line-height: 1.2; }
.v-appbtn b { font-size: .93rem; font-weight: 700; }

.v-support-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    color: rgba(255,255,255,.62);
    font-size: .9rem;
}
.v-support-link:hover { color: var(--teal-300); }
.v-support-link i { color: var(--teal-400); }

.v-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
}
.v-footer-bottom .v-wrap {
    display: flex; flex-wrap: wrap; gap: 14px;
    align-items: center; justify-content: space-between;
}
.v-footer-bottom p { margin: 0; font-size: .86rem; }
.v-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.v-legal a { color: rgba(255,255,255,.62); font-size: .86rem; }
.v-legal a:hover { color: var(--teal-300); }

@media (max-width: 991px) {
    .v-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .v-footer-grid { grid-template-columns: 1fr; text-align: center; }
    .v-social, .v-footer-links { align-items: center; justify-content: center; }
    .v-footer-bottom .v-wrap { justify-content: center; text-align: center; }
    .v-legal { justify-content: center; }
}

/* --------------------------------------------------------------------------
   11. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .72s var(--ease-out), transform .72s var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Stagger children */
[data-reveal-group] > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .66s var(--ease-out), transform .66s var(--ease-out);
}
[data-reveal-group].is-in > * { opacity: 1; transform: none; }
[data-reveal-group].is-in > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-group].is-in > *:nth-child(2) { transition-delay: .13s; }
[data-reveal-group].is-in > *:nth-child(3) { transition-delay: .21s; }
[data-reveal-group].is-in > *:nth-child(4) { transition-delay: .29s; }
[data-reveal-group].is-in > *:nth-child(5) { transition-delay: .37s; }
[data-reveal-group].is-in > *:nth-child(6) { transition-delay: .45s; }

/* --------------------------------------------------------------------------
   12. ALERTS / COOKIE / MISC
   -------------------------------------------------------------------------- */
.v-alert {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 15px 19px;
    border-radius: var(--r-md);
    font-size: .93rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.v-alert--ok { background: var(--teal-50); color: var(--teal-700); border: 1px solid var(--teal-200); }
.v-alert--err { background: #fef2f2; color: #b42318; border: 1px solid #fecaca; }

.v-cookie {
    position: fixed;
    left: 20px; bottom: 20px;
    z-index: 1300;
    width: min(370px, calc(100vw - 40px));
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    transform: translateY(140%);
    transition: transform var(--t-slow) var(--ease-spring);
}
.v-cookie.is-in { transform: translateY(0); }
.v-cookie h6 { font-size: .98rem; font-weight: 800; color: var(--ink-900); margin-bottom: .4rem; }
.v-cookie p { font-size: .87rem; color: var(--ink-400); margin-bottom: 1rem; }
.v-cookie-actions { display: flex; gap: 9px; }
.v-cookie-actions button { flex: 1; }

.v-toast {
    position: fixed;
    left: 50%; bottom: 30px;
    transform: translate(-50%, 200%);
    z-index: 1400;
    padding: 13px 26px;
    border-radius: var(--r-pill);
    background: var(--ink-900);
    color: #fff;
    font-size: .9rem; font-weight: 600;
    box-shadow: var(--sh-lg);
    transition: transform var(--t-slow) var(--ease-spring);
}
.v-toast.is-in { transform: translate(-50%, 0); }

/* Back to top */
.v-top {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 1100;
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--grad-brand);
    color: #fff;
    cursor: pointer;
    box-shadow: var(--sh-blue);
    opacity: 0; visibility: hidden;
    transform: translateY(14px);
    transition: opacity var(--t-mid) var(--ease-out),
                transform var(--t-mid) var(--ease-spring),
                visibility var(--t-mid);
}
.v-top.is-in { opacity: 1; visibility: visible; transform: none; }
.v-top:hover { transform: translateY(-4px); }

/* --------------------------------------------------------------------------
   12b. AD CARDS (injected by voyzo-ui.js)
   -------------------------------------------------------------------------- */
.ads-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 320px;
    background: var(--ink-100);
}
.ads-image { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.ads-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,20,36,.86) 0%, rgba(10,20,36,.42) 58%, rgba(10,20,36,.1) 100%);
}
.ads-content {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: clamp(24px, 4vw, 46px);
}
.ads-title {
    font-size: clamp(1.25rem, 1rem + 1.3vw, 1.9rem);
    font-weight: 900; color: #fff;
    letter-spacing: -.02em; margin-bottom: .4rem;
}
.ads-action {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: #fff; color: var(--blue-600);
    font-size: 1.2rem; font-weight: 700;
    transition: transform var(--t-mid) var(--ease-spring), background var(--t-mid);
}
.ads-action:hover { transform: scale(1.1) rotate(45deg); background: var(--teal-400); color: #fff; }

/* --------------------------------------------------------------------------
   13. FORMS
   -------------------------------------------------------------------------- */
.v-field { margin-bottom: 17px; }
.v-label {
    display: block;
    font-size: .84rem;
    font-weight: 700;
    color: var(--ink-700);
    margin-bottom: 7px;
}
.v-input, .v-textarea, .v-select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--ink-100);
    border-radius: var(--r-sm);
    background: #fff;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink-800);
    transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.v-input:focus, .v-textarea:focus, .v-select:focus {
    outline: none;
    border-color: var(--teal-400);
    box-shadow: 0 0 0 4px rgba(57,211,195,.16);
}
.v-textarea { resize: vertical; min-height: 130px; }

/* --------------------------------------------------------------------------
   14. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    [data-reveal], [data-reveal-group] > * { opacity: 1 !important; transform: none !important; }
    .v-orb { animation: none; }
}

/* --------------------------------------------------------------------------
   15. UTILITIES
   -------------------------------------------------------------------------- */
.v-center { text-align: center; }
.v-mt-0 { margin-top: 0; }
.v-mb-0 { margin-bottom: 0; }
.v-mb-1 { margin-bottom: .5rem; }
.v-mb-2 { margin-bottom: 1rem; }
.v-mb-3 { margin-bottom: 1.6rem; }
.v-mb-4 { margin-bottom: 2.2rem; }
.v-flex { display: flex; }
.v-items-center { align-items: center; }
.v-justify-center { justify-content: center; }
.v-gap-2 { gap: .75rem; }
.v-gap-3 { gap: 1.15rem; }
.v-hide { display: none !important; }
.v-sr {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
