/* =========================================================================
   VShop Platform — Modern Landing CSS (Blue & White, no dark/black)
   Self-contained: not dependent on Tailwind. v2026.04
   ========================================================================= */

:root {
    --vs-primary:        #1e6bff;
    --vs-primary-dark:   #1853c4;
    --vs-primary-light:  #4d8cff;
    --vs-accent:         #00c2ff;
    --vs-accent-2:       #6ec1ff;
    --vs-success:        #16c098;
    --vs-warning:        #ffb547;
    --vs-text:           #1a3358;
    --vs-text-soft:      #4b5e7e;
    --vs-text-mute:      #7387a3;
    --vs-bg:             #ffffff;
    --vs-bg-soft:        #f4f8ff;
    --vs-bg-tint:        #eaf2ff;
    --vs-border:         #d9e6f7;
    --vs-shadow:         0 10px 30px rgba(30, 107, 255, .12);
    --vs-shadow-soft:    0 6px 18px rgba(30, 107, 255, .08);
    --vs-radius:         16px;
    --vs-radius-sm:      10px;
    --vs-radius-lg:      24px;
    --vs-gradient:       linear-gradient(135deg, #1e6bff 0%, #00c2ff 100%);
    --vs-gradient-soft:  linear-gradient(135deg, #eaf2ff 0%, #ffffff 100%);
    --vs-font:           'Nunito', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.vs-body {
    margin: 0;
    font-family: var(--vs-font);
    color: var(--vs-text);
    background: var(--vs-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vs-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--vs-primary-dark); }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.vs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.vs-btn-primary {
    background: var(--vs-gradient);
    color: #fff;
    box-shadow: 0 8px 20px rgba(30, 107, 255, .3);
}
.vs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 107, 255, .4);
    color: #fff;
}
.vs-btn-secondary {
    background: #fff;
    color: var(--vs-primary);
    border: 2px solid var(--vs-primary);
}
.vs-btn-secondary:hover {
    background: var(--vs-bg-tint);
    transform: translateY(-2px);
}
.vs-btn-ghost {
    background: rgba(255,255,255,.95);
    color: var(--vs-primary);
    border: 1px solid var(--vs-border);
}
.vs-btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.vs-btn-sm { padding: 10px 18px; font-size: 14px; }
.vs-btn-lg { padding: 16px 36px; font-size: 16px; }
.vs-btn-block { width: 100%; }

/* ---------- Header ---------- */
.vs-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.vs-header.is-scrolled {
    background: rgba(255,255,255,.98);
    border-bottom-color: var(--vs-border);
    box-shadow: 0 2px 14px rgba(30, 107, 255, .06);
}
.vs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.vs-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--vs-text);
}
.vs-brand:hover { color: var(--vs-primary); }
.vs-brand__mark {
    width: 38px; height: 38px;
    background: var(--vs-gradient);
    border-radius: 10px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(30, 107, 255, .35);
    position: relative;
}
.vs-brand__mark::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 10px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 60%);
}
.vs-brand__name { color: var(--vs-text); }
.vs-brand__name span { color: var(--vs-primary); }

.vs-nav {
    display: flex; align-items: center; gap: 8px;
}
.vs-nav a {
    padding: 8px 16px;
    color: var(--vs-text-soft);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all .2s ease;
}
.vs-nav a:hover { color: var(--vs-primary); background: var(--vs-bg-tint); }
.vs-nav a.is-active { color: var(--vs-primary); background: var(--vs-bg-tint); }

.vs-header__cta { display: flex; align-items: center; gap: 10px; }
.vs-lang {
    position: relative;
    padding: 8px 12px;
    background: var(--vs-bg-soft);
    border: 1px solid var(--vs-border);
    border-radius: 8px;
    color: var(--vs-text-soft);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
}
.vs-lang__menu {
    position: absolute; top: calc(100% + 6px); right: 0;
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: 10px;
    box-shadow: var(--vs-shadow-soft);
    padding: 6px;
    min-width: 120px;
    display: none;
}
.vs-lang:hover .vs-lang__menu, .vs-lang:focus-within .vs-lang__menu { display: block; }
.vs-lang__menu a {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    color: var(--vs-text);
    font-size: 14px;
    border-radius: 6px;
}
.vs-lang__menu a:hover { background: var(--vs-bg-tint); }

.vs-burger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--vs-bg-tint);
    color: var(--vs-primary);
    border: none;
    align-items: center; justify-content: center;
}

/* Mobile drawer */
.vs-drawer {
    position: fixed;
    top: 0; left: -100%;
    width: 86%; max-width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transition: left .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 4px 0 30px rgba(30, 107, 255, .15);
    display: flex; flex-direction: column;
    padding: 24px;
}
.vs-drawer.is-open { left: 0; }
.vs-drawer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vs-border);
    margin-bottom: 16px;
}
.vs-drawer__close {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--vs-bg-tint);
    border: none;
    color: var(--vs-primary);
    font-size: 20px;
}
.vs-drawer__nav a {
    display: block;
    padding: 14px 12px;
    color: var(--vs-text);
    font-weight: 700;
    font-size: 17px;
    border-bottom: 1px solid var(--vs-border);
}
.vs-drawer__nav a:hover { color: var(--vs-primary); }
.vs-drawer__cta { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.vs-overlay {
    position: fixed; inset: 0;
    background: rgba(26, 51, 88, .55);
    z-index: 1090;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.vs-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.vs-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 50%, #ffffff 100%);
    overflow: hidden;
}
.vs-hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 194, 255, .25), transparent 70%);
    border-radius: 50%;
    animation: vs-float-slow 12s ease-in-out infinite;
}
.vs-hero::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30, 107, 255, .18), transparent 70%);
    border-radius: 50%;
    animation: vs-float-slow 15s ease-in-out infinite reverse;
}
.vs-hero__grid {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.vs-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--vs-primary);
    box-shadow: var(--vs-shadow-soft);
    margin-bottom: 22px;
}
.vs-hero__badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--vs-success);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(22, 192, 152, .7);
    animation: vs-pulse 2s infinite;
}
.vs-hero__title {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    color: var(--vs-text);
}
.vs-hero__title em {
    font-style: normal;
    background: var(--vs-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.vs-hero__lead {
    font-size: 18px;
    color: var(--vs-text-soft);
    margin: 0 0 32px;
    max-width: 560px;
}
.vs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.vs-hero__trust {
    display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
    color: var(--vs-text-mute);
    font-size: 14px;
    font-weight: 600;
}
.vs-hero__trust strong { color: var(--vs-text); font-weight: 800; }
.vs-hero__visual {
    position: relative;
    perspective: 1200px;
}
.vs-hero-card {
    background: #fff;
    border-radius: var(--vs-radius-lg);
    padding: 24px;
    box-shadow: var(--vs-shadow);
    border: 1px solid var(--vs-border);
    transform: rotateY(-6deg) rotateX(4deg);
    animation: vs-tilt 8s ease-in-out infinite;
}
.vs-hero-card__head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--vs-border);
    margin-bottom: 14px;
}
.vs-hero-card__title { font-weight: 800; font-size: 16px; color: var(--vs-text); }
.vs-hero-card__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--vs-success);
    box-shadow: 0 0 0 4px rgba(22, 192, 152, .15);
}
.vs-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.vs-hero-stat {
    background: var(--vs-bg-soft);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}
.vs-hero-stat__num {
    font-size: 22px; font-weight: 900; color: var(--vs-primary); line-height: 1;
}
.vs-hero-stat__lbl { font-size: 11px; color: var(--vs-text-mute); text-transform: uppercase; letter-spacing: .5px; margin-top: 6px; font-weight: 700; }
.vs-hero-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; padding: 12px; background: var(--vs-bg-soft); border-radius: 12px; }
.vs-hero-bar {
    flex: 1;
    background: var(--vs-gradient);
    border-radius: 6px 6px 0 0;
    animation: vs-bar-grow 1.6s cubic-bezier(.4,0,.2,1) both;
}
.vs-hero-bar:nth-child(1){ height: 40%; animation-delay: .1s }
.vs-hero-bar:nth-child(2){ height: 65%; animation-delay: .2s }
.vs-hero-bar:nth-child(3){ height: 50%; animation-delay: .3s }
.vs-hero-bar:nth-child(4){ height: 80%; animation-delay: .4s }
.vs-hero-bar:nth-child(5){ height: 95%; animation-delay: .5s }
.vs-hero-bar:nth-child(6){ height: 70%; animation-delay: .6s }
.vs-hero-bar:nth-child(7){ height: 88%; animation-delay: .7s }

.vs-hero-float {
    position: absolute;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--vs-shadow);
    display: flex; align-items: center; gap: 10px;
    font-weight: 700; font-size: 13px;
    border: 1px solid var(--vs-border);
}
.vs-hero-float__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
}
.vs-hero-float--1 { top: -10px; left: -30px; animation: vs-floaty 5s ease-in-out infinite; }
.vs-hero-float--1 .vs-hero-float__icon { background: var(--vs-success); }
.vs-hero-float--2 { bottom: 40px; right: -20px; animation: vs-floaty 5s ease-in-out infinite reverse; }
.vs-hero-float--2 .vs-hero-float__icon { background: var(--vs-accent); }

/* ---------- Section base ---------- */
.vs-section { padding: 96px 0; position: relative; }
.vs-section--alt { background: var(--vs-bg-soft); }
.vs-section--tinted { background: var(--vs-bg-tint); }
.vs-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.vs-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: var(--vs-bg-tint);
    color: var(--vs-primary);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.vs-h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--vs-text);
    margin: 0 0 16px;
    letter-spacing: -0.8px;
}
.vs-h2 em {
    font-style: normal;
    background: var(--vs-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vs-lead { font-size: 17px; color: var(--vs-text-soft); margin: 0; }

/* ---------- Trust bar / Logos ---------- */
.vs-trustbar { padding: 40px 0; background: #fff; border-top: 1px solid var(--vs-border); border-bottom: 1px solid var(--vs-border); }
.vs-trustbar__title { text-align: center; color: var(--vs-text-mute); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.vs-trustbar__logos {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 50px;
}
.vs-trustbar__logos img {
    max-height: 36px; opacity: .55; filter: grayscale(1);
    transition: all .3s ease;
}
.vs-trustbar__logos img:hover { opacity: 1; filter: grayscale(0); transform: scale(1.05); }

/* ---------- Feature grid ---------- */
.vs-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vs-feature-card {
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius);
    padding: 32px;
    transition: all .35s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}
.vs-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--vs-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.vs-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vs-shadow);
    border-color: transparent;
}
.vs-feature-card:hover::before { transform: scaleX(1); }
.vs-feature-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--vs-bg-tint);
    color: var(--vs-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.vs-feature-card:hover .vs-feature-card__icon {
    background: var(--vs-gradient);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.vs-feature-card h3 {
    font-size: 19px; font-weight: 800; margin: 0 0 10px; color: var(--vs-text);
}
.vs-feature-card p {
    color: var(--vs-text-soft); font-size: 15px; margin: 0;
}

/* ---------- Split row (image + content) ---------- */
.vs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vs-split--reverse { direction: rtl; }
.vs-split--reverse > * { direction: ltr; }
.vs-split__media {
    position: relative;
    background: var(--vs-gradient-soft);
    border-radius: var(--vs-radius-lg);
    padding: 30px;
    box-shadow: var(--vs-shadow-soft);
    overflow: hidden;
}
.vs-split__media::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: var(--vs-gradient);
    opacity: .12;
    border-radius: 50%;
}
.vs-split__media img { border-radius: var(--vs-radius); }
.vs-split__list { margin-top: 24px; }
.vs-split__list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    color: var(--vs-text);
    font-weight: 600;
}
.vs-split__list li::before {
    content: '';
    flex: 0 0 22px;
    width: 22px; height: 22px; margin-top: 2px;
    border-radius: 50%;
    background: var(--vs-gradient);
    background-image: var(--vs-gradient), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: cover, 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 10px rgba(30, 107, 255, .25);
}

/* ---------- Stats counters ---------- */
.vs-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    padding: 60px;
    background: #fff;
    border-radius: var(--vs-radius-lg);
    box-shadow: var(--vs-shadow);
    border: 1px solid var(--vs-border);
    margin-top: -80px;
    position: relative; z-index: 5;
}
.vs-stat { text-align: center; }
.vs-stat__num {
    font-size: 42px; font-weight: 900;
    background: var(--vs-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.vs-stat__lbl { color: var(--vs-text-soft); font-size: 14px; font-weight: 600; margin-top: 10px; }

/* ---------- POS Spotlight ---------- */
.vs-pos {
    background: linear-gradient(135deg, #1e6bff 0%, #00c2ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.vs-pos::before, .vs-pos::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.vs-pos::before { width: 500px; height: 500px; top: -200px; right: -100px; }
.vs-pos::after { width: 400px; height: 400px; bottom: -150px; left: -120px; }
.vs-pos__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vs-pos h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; margin: 14px 0 18px; letter-spacing: -.8px; }
.vs-pos__lead { color: rgba(255,255,255,.92); font-size: 17px; margin-bottom: 28px; }
.vs-pos__eyebrow { color: rgba(255,255,255,.85); font-weight: 800; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; background: rgba(255,255,255,.18); border-radius: 999px; display: inline-block; backdrop-filter: blur(8px); }
.vs-pos__list { margin-bottom: 32px; }
.vs-pos__list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: #fff; font-weight: 600; }
.vs-pos__list li::before {
    content: ''; width: 22px; height: 22px; margin-top: 2px;
    border-radius: 50%; background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e6bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 14px 14px; background-position: center; background-repeat: no-repeat;
    flex: 0 0 22px;
}
.vs-pos__visual {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.vs-pos__device {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    color: var(--vs-text);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
    transition: transform .35s ease;
}
.vs-pos__device:hover { transform: translateY(-6px); }
.vs-pos__device h4 { font-size: 14px; margin: 14px 0 6px; color: var(--vs-text); font-weight: 800; }
.vs-pos__device p { font-size: 13px; margin: 0; color: var(--vs-text-mute); }
.vs-pos__device-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--vs-bg-tint);
    color: var(--vs-primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 22px;
}
.vs-pos__bridge {
    grid-column: 1/-1;
    background: rgba(255,255,255,.16);
    border: 1px dashed rgba(255,255,255,.45);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
    color: #fff; font-weight: 700; font-size: 14px;
    backdrop-filter: blur(8px);
}
.vs-pos__bridge .vs-pulse-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: #16c098;
    box-shadow: 0 0 0 0 rgba(22, 192, 152, .7);
    animation: vs-pulse 1.8s infinite;
}

/* ---------- Pricing (home preview) ---------- */
.vs-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vs-price-card {
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all .3s ease;
}
.vs-price-card:hover { transform: translateY(-6px); box-shadow: var(--vs-shadow); }
.vs-price-card--popular {
    border: 2px solid var(--vs-primary);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: var(--vs-shadow);
    transform: scale(1.03);
}
.vs-price-card--popular:hover { transform: scale(1.03) translateY(-6px); }
.vs-price-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--vs-gradient);
    color: #fff; font-weight: 800; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 999px;
    box-shadow: 0 8px 18px rgba(30, 107, 255, .35);
}
.vs-price-card h3 { font-size: 18px; font-weight: 800; color: var(--vs-text); margin: 0 0 8px; }
.vs-price-card .vs-price-amount { font-size: 44px; font-weight: 900; color: var(--vs-text); margin: 12px 0 4px; line-height: 1; }
.vs-price-card .vs-price-amount small { font-size: 16px; font-weight: 600; color: var(--vs-text-mute); }
.vs-price-card .vs-price-desc { color: var(--vs-text-soft); font-size: 14px; margin: 0 0 22px; }
.vs-price-card ul { margin: 0 0 28px; }
.vs-price-card ul li {
    padding: 8px 0; color: var(--vs-text); font-size: 14px;
    display: flex; align-items: flex-start; gap: 10px;
}
.vs-price-card ul li::before {
    content: '✓'; color: var(--vs-success); font-weight: 900; flex: 0 0 16px;
}
.vs-toggle {
    display: inline-flex; align-items: center; gap: 14px; margin: 0 auto 40px;
    background: #fff; padding: 6px; border-radius: 999px; border: 1px solid var(--vs-border);
}
.vs-toggle button {
    padding: 10px 22px; border-radius: 999px; border: none; background: transparent;
    font-weight: 700; color: var(--vs-text-soft); font-size: 14px;
    transition: all .25s ease;
}
.vs-toggle button.is-active { background: var(--vs-gradient); color: #fff; }
.vs-toggle__wrap { text-align: center; }

/* ---------- Testimonials ---------- */
.vs-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vs-testi-card {
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius);
    padding: 30px;
    position: relative;
    transition: all .3s ease;
}
.vs-testi-card:hover { transform: translateY(-4px); box-shadow: var(--vs-shadow); }
.vs-testi-card::before {
    content: '"';
    position: absolute; top: 14px; right: 26px;
    font-size: 100px; line-height: 1;
    color: var(--vs-bg-tint);
    font-family: Georgia, serif;
    pointer-events: none;
}
.vs-testi-stars { color: #ffb547; margin-bottom: 14px; font-size: 16px; }
.vs-testi-quote { color: var(--vs-text-soft); font-size: 15px; margin-bottom: 22px; font-style: italic; position: relative; z-index: 2; }
.vs-testi-author { display: flex; align-items: center; gap: 12px; }
.vs-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--vs-gradient);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 16px;
}
.vs-testi-name { font-weight: 800; color: var(--vs-text); font-size: 14px; }
.vs-testi-role { color: var(--vs-text-mute); font-size: 12px; }

/* ---------- FAQ ---------- */
.vs-faq { max-width: 820px; margin: 0 auto; }
.vs-faq-item {
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius);
    padding: 22px 26px;
    margin-bottom: 14px;
    transition: all .3s ease;
    cursor: pointer;
}
.vs-faq-item:hover { border-color: var(--vs-primary-light); }
.vs-faq-item.is-open { border-color: var(--vs-primary); box-shadow: var(--vs-shadow-soft); }
.vs-faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-weight: 800; color: var(--vs-text); font-size: 16px;
}
.vs-faq-q::after {
    content: '+';
    width: 28px; height: 28px;
    border-radius: 50%; background: var(--vs-bg-tint); color: var(--vs-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
    transition: all .3s ease;
    flex: 0 0 28px;
}
.vs-faq-item.is-open .vs-faq-q::after { content: '−'; background: var(--vs-gradient); color: #fff; }
.vs-faq-a {
    max-height: 0; overflow: hidden;
    color: var(--vs-text-soft); font-size: 15px;
    transition: max-height .35s ease, padding .35s ease;
}
.vs-faq-item.is-open .vs-faq-a { max-height: 400px; padding-top: 14px; }

/* ---------- CTA Big ---------- */
.vs-cta-big {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.vs-cta-big__inner {
    background: var(--vs-gradient);
    border-radius: var(--vs-radius-lg);
    padding: 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 107, 255, .3);
}
.vs-cta-big__inner::before, .vs-cta-big__inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}
.vs-cta-big__inner::before { width: 300px; height: 300px; top: -150px; left: -100px; }
.vs-cta-big__inner::after { width: 200px; height: 200px; bottom: -80px; right: -50px; }
.vs-cta-big h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; margin: 0 0 14px; position: relative; z-index: 2; }
.vs-cta-big p { color: rgba(255,255,255,.92); font-size: 17px; margin: 0 0 28px; position: relative; z-index: 2; }
.vs-cta-big__form { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; display: flex; gap: 10px; }
.vs-cta-big__form input {
    flex: 1; padding: 16px 22px; border-radius: 12px;
    border: none; outline: none;
    background: rgba(255,255,255,.95); font-size: 15px;
    color: var(--vs-text); font-weight: 600;
}
.vs-cta-big__form input::placeholder { color: var(--vs-text-mute); }
.vs-cta-big__form button {
    padding: 16px 28px; border-radius: 12px; border: none;
    background: #fff; color: var(--vs-primary);
    font-weight: 800; cursor: pointer; transition: all .25s ease;
}
.vs-cta-big__form button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.vs-cta-big__note { color: rgba(255,255,255,.85); font-size: 13px; margin-top: 14px; position: relative; z-index: 2; }
.vs-cta-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px; margin-top: 36px; position: relative; z-index: 2; }
.vs-cta-stat { color: #fff; }
.vs-cta-stat strong { display: block; font-size: 28px; font-weight: 900; }
.vs-cta-stat span { font-size: 13px; opacity: .9; }

/* ---------- Footer ---------- */
.vs-footer {
    background: linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 100%);
    padding: 70px 0 30px;
    color: var(--vs-text-soft);
    border-top: 1px solid var(--vs-border);
}
.vs-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.vs-footer h4 { color: var(--vs-text); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 18px; }
.vs-footer ul li { padding: 6px 0; }
.vs-footer ul li a { color: var(--vs-text-soft); font-size: 14px; font-weight: 600; }
.vs-footer ul li a:hover { color: var(--vs-primary); }
.vs-footer__about { color: var(--vs-text-soft); font-size: 14px; margin: 14px 0 22px; max-width: 320px; }
.vs-footer__brand { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; color: var(--vs-text); margin-bottom: 8px; }
.vs-footer__brand .vs-brand__mark { width: 36px; height: 36px; }
.vs-socials { display: flex; gap: 10px; }
.vs-socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--vs-border);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--vs-primary);
    transition: all .25s ease;
}
.vs-socials a:hover { background: var(--vs-gradient); color: #fff; transform: translateY(-2px); border-color: transparent; }
.vs-footer__bottom {
    border-top: 1px solid var(--vs-border);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
    color: var(--vs-text-mute); font-size: 13px;
}
.vs-footer__bottom a { color: var(--vs-text-mute); }
.vs-footer__bottom a:hover { color: var(--vs-primary); }
.vs-footer__contacts li { display: flex; align-items: center; gap: 10px; color: var(--vs-text-soft); font-size: 14px; padding: 6px 0; }
.vs-footer__contacts svg { color: var(--vs-primary); flex: 0 0 18px; }

/* ---------- Page header (sub-pages) ---------- */
.vs-page-head {
    padding: 130px 0 60px;
    background: linear-gradient(180deg, #eaf2ff 0%, #f4f8ff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.vs-page-head::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(0, 194, 255, .15), transparent 70%);
    pointer-events: none;
}
.vs-page-head__title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900; color: var(--vs-text);
    margin: 0 0 14px; letter-spacing: -.8px;
    position: relative; z-index: 2;
}
.vs-page-head__crumb {
    color: var(--vs-text-soft); font-weight: 600; font-size: 14px;
    position: relative; z-index: 2;
}
.vs-page-head__crumb a { color: var(--vs-primary); }

/* ---------- Forms ---------- */
.vs-form { display: grid; gap: 16px; }
.vs-form input, .vs-form textarea, .vs-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--vs-border);
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: var(--vs-text);
    outline: none;
    transition: all .2s ease;
}
.vs-form input:focus, .vs-form textarea:focus, .vs-form select:focus {
    border-color: var(--vs-primary);
    box-shadow: 0 0 0 4px rgba(30, 107, 255, .15);
}
.vs-form textarea { resize: vertical; min-height: 140px; }
.vs-form label { font-weight: 700; color: var(--vs-text); font-size: 14px; }
.vs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.vs-card {
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius-lg);
    padding: 36px;
    box-shadow: var(--vs-shadow-soft);
}

.vs-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.vs-contact-info { display: grid; gap: 16px; }
.vs-contact-info__item {
    background: #fff; border: 1px solid var(--vs-border); border-radius: var(--vs-radius);
    padding: 22px;
    display: flex; align-items: flex-start; gap: 14px;
    transition: all .3s ease;
}
.vs-contact-info__item:hover { transform: translateY(-3px); box-shadow: var(--vs-shadow-soft); }
.vs-contact-info__icon {
    width: 44px; height: 44px;
    background: var(--vs-bg-tint); color: var(--vs-primary);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 44px;
}
.vs-contact-info__title { font-weight: 800; color: var(--vs-text); margin: 0 0 4px; font-size: 14px; }
.vs-contact-info__value { color: var(--vs-text-soft); font-size: 14px; }

/* ---------- Page article (Privacy/Terms) ---------- */
.vs-article {
    max-width: 820px; margin: 0 auto;
    background: #fff;
    border: 1px solid var(--vs-border);
    border-radius: var(--vs-radius-lg);
    padding: 50px;
    box-shadow: var(--vs-shadow-soft);
}
.vs-article h1, .vs-article h2, .vs-article h3 { color: var(--vs-text); }
.vs-article h2 { font-size: 24px; margin: 32px 0 12px; }
.vs-article h3 { font-size: 18px; margin: 24px 0 10px; }
.vs-article p, .vs-article li { color: var(--vs-text-soft); font-size: 15px; line-height: 1.75; }
.vs-article ul, .vs-article ol { padding-left: 22px; margin: 14px 0; list-style: disc; }
.vs-article ol { list-style: decimal; }

/* ---------- Animations ---------- */
@keyframes vs-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(22, 192, 152, .7); }
    70%  { box-shadow: 0 0 0 12px rgba(22, 192, 152, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 192, 152, 0); }
}
@keyframes vs-float-slow {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}
@keyframes vs-floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes vs-tilt {
    0%, 100% { transform: rotateY(-6deg) rotateX(4deg); }
    50% { transform: rotateY(-3deg) rotateX(2deg) translateY(-6px); }
}
@keyframes vs-bar-grow {
    from { height: 0; }
}
@keyframes vs-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.vs-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.vs-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.vs-text-center { text-align: center; }
.vs-mt-md { margin-top: 24px; }
.vs-mt-lg { margin-top: 40px; }
.vs-flex-center { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .vs-hero__grid, .vs-split, .vs-pos__inner, .vs-contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .vs-feature-grid, .vs-price-grid, .vs-testi-grid { grid-template-columns: repeat(2, 1fr); }
    .vs-stats { grid-template-columns: repeat(2, 1fr); padding: 36px; }
    .vs-footer__grid { grid-template-columns: 1fr 1fr; }
    .vs-pos__visual { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .vs-nav, .vs-header__cta .vs-btn, .vs-header__cta .vs-lang { display: none; }
    .vs-burger { display: inline-flex; }
    .vs-section { padding: 64px 0; }
    .vs-hero { padding: 110px 0 70px; }
    .vs-hero-card { transform: none; }
    .vs-hero-float { display: none; }
    .vs-feature-grid, .vs-price-grid, .vs-testi-grid, .vs-pos__visual { grid-template-columns: 1fr; }
    .vs-stats { grid-template-columns: 1fr 1fr; padding: 28px; gap: 18px; }
    .vs-stat__num { font-size: 32px; }
    .vs-cta-big__inner { padding: 36px 24px; }
    .vs-cta-big__form { flex-direction: column; }
    .vs-form-row { grid-template-columns: 1fr; }
    .vs-footer__grid { grid-template-columns: 1fr; }
    .vs-article { padding: 30px 22px; }
    .vs-price-card--popular { transform: none; }
    .vs-price-card--popular:hover { transform: translateY(-4px); }
    .vs-toggle button { padding: 8px 16px; font-size: 13px; }
}
@media (max-width: 480px) {
    .vs-hero__title { font-size: 32px; }
    .vs-stats { grid-template-columns: 1fr; }
    .vs-cta-stats { gap: 18px; }
    .vs-container { padding: 0 18px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0s !important; transition: none !important; }
    .vs-reveal { opacity: 1; transform: none; }
}

/* ---------- WhatsApp FAB ---------- */
.vs-wa-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 36px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .55);
    transition: transform .2s ease, box-shadow .2s ease;
    animation: vsWaPulse 2.4s infinite;
}
.vs-wa-fab:hover { transform: translateY(-4px) scale(1.05); color:#fff; }
@keyframes vsWaPulse {
    0%   { box-shadow: 0 14px 36px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .55); }
    70%  { box-shadow: 0 14px 36px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 14px 36px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
    .vs-wa-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
    .vs-wa-fab svg { width: 28px; height: 28px; }
}
