:root {
  --vsv-purple: #6507c7;
  --vsv-purple-deep: #2a113f;
  --vsv-blue: #b7e8ff;
  --vsv-blue-strong: #76cfff;
  --vsv-ink: #141312;
  --vsv-graphite: #2b2f38;
  --vsv-muted: #687182;
  --vsv-line: #dce3ee;
  --vsv-cloud: #f4f7fb;
  --vsv-white: #ffffff;
  --vsv-success: #13a48e;
  --vsv-radius: 8px;
  --vsv-shadow: 0 24px 70px rgba(20, 19, 18, 0.14);
  --vsv-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --vsv-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --vsv-glass: rgba(255,255,255,0.68);
  --vsv-glass-bright: rgba(255,255,255,0.84);
  --vsv-glass-dark: rgba(20,19,18,0.52);
  --vsv-glass-dark-strong: rgba(20,19,18,0.72);
  --vsv-glass-line: rgba(255,255,255,0.42);
  --vsv-glass-shadow: 0 26px 76px rgba(20, 19, 18, 0.14), inset 0 1px 0 rgba(255,255,255,0.58);
  --vsv-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--vsv-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 36%, #eef7fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
.vsv-skip { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--vsv-ink); color: var(--vsv-white); padding: 10px 14px; border-radius: var(--vsv-radius); }
.vsv-skip:focus { top: 16px; }

.vsv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 19, 18, 0.78);
  color: var(--vsv-white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.admin-bar .vsv-header { top: 32px; }
.vsv-header.is-scrolled {
  background: rgba(20, 19, 18, 0.92);
  box-shadow: 0 14px 34px rgba(20, 19, 18, 0.16);
}
.vsv-scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--vsv-purple) 0%, var(--vsv-blue-strong) 100%);
  will-change: transform;
}
.vsv-header-inner {
  width: min(var(--vsv-max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vsv-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.vsv-brand img, .custom-logo { max-height: 44px; width: auto; }
.vsv-brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; background: var(--vsv-purple); color: var(--vsv-white); font-weight: 900; }
.vsv-brand-text { font-size: 1.05rem; }
.vsv-nav-list { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.vsv-nav-list a { position: relative; color: rgba(255,255,255,0.88); text-decoration: none; font-weight: 650; font-size: 0.92rem; transition: color 180ms var(--vsv-ease), opacity 180ms var(--vsv-ease); }
.vsv-nav-list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; transform: scaleX(0); transform-origin: left center; background: var(--vsv-blue); transition: transform 220ms var(--vsv-ease-out); }
.vsv-nav-list a:hover, .vsv-nav-list a:focus, .vsv-nav-list a[aria-current="page"] { color: var(--vsv-blue); }
.vsv-nav-list a:hover::after, .vsv-nav-list a:focus::after, .vsv-nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.vsv-header-actions { display: flex; align-items: center; gap: 12px; }
.vsv-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.28); border-radius: var(--vsv-radius); background: rgba(255,255,255,0.08); padding: 10px; cursor: pointer; transition: background 180ms var(--vsv-ease), border-color 180ms var(--vsv-ease), transform 180ms var(--vsv-ease); }
.vsv-menu-toggle:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.vsv-menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--vsv-white); transition: transform 220ms var(--vsv-ease-out), opacity 160ms var(--vsv-ease); }
.vsv-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vsv-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vsv-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vsv-main { min-height: 60vh; }
.vsv-js [data-vsv-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 620ms var(--vsv-ease-out), transform 620ms var(--vsv-ease-out);
  transition-delay: min(calc(var(--vsv-reveal-index, 0) * 55ms), 260ms);
  will-change: opacity, transform;
}
.vsv-js [data-vsv-reveal="media"] { transform: translate3d(0, 26px, 0) scale(0.985); }
.vsv-js [data-vsv-reveal].is-visible { opacity: 1; transform: none; }
.vsv-js [data-vsv-reveal].is-visible { will-change: auto; }
.vsv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--vsv-radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms var(--vsv-ease), background 180ms var(--vsv-ease), border-color 180ms var(--vsv-ease), color 180ms var(--vsv-ease), box-shadow 180ms var(--vsv-ease);
}
.vsv-button::after {
  content: "";
  position: absolute;
  inset: -2px auto -2px -45%;
  width: 42%;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  pointer-events: none;
}
.vsv-button:hover { transform: translateY(-2px); }
.vsv-button:hover::after { transform: translateX(360%) skewX(-18deg); transition: transform 620ms var(--vsv-ease-out); }
.vsv-button-primary { background: var(--vsv-purple); color: var(--vsv-white); box-shadow: 0 18px 40px rgba(101, 7, 199, 0.28); }
.vsv-button-light { background: rgba(255,255,255,0.9); color: var(--vsv-ink); }
.vsv-button-dark { background: var(--vsv-ink); color: var(--vsv-white); }
.vsv-button-ghost { background: rgba(255,255,255,0.08); color: var(--vsv-white); border-color: rgba(255,255,255,0.24); }
.vsv-text-link { font-weight: 800; color: var(--vsv-purple); text-decoration: none; }
.vsv-kicker { margin: 0 0 12px; color: var(--vsv-purple); font-weight: 900; text-transform: uppercase; font-size: 0.78rem; }
.vsv-hero .vsv-kicker, .vsv-footer .vsv-kicker { color: var(--vsv-blue); }

.vsv-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--vsv-white);
  background-image: var(--vsv-hero-image);
  background-size: cover;
  background-position: center;
}
.vsv-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,18,0.94) 0%, rgba(42,17,63,0.74) 44%, rgba(20,19,18,0.2) 100%);
}
.vsv-hero-grid {
  position: relative;
  width: min(var(--vsv-max), calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 280px;
  grid-template-rows: 1fr auto auto 56px;
  gap: 24px;
  align-items: end;
  padding: 90px 0 58px;
}
.vsv-hero-copy { grid-column: 1 / 3; max-width: 760px; align-self: center; padding-top: 40px; }
.vsv-hero h1, .vsv-page-hero h1, .vsv-single h1, .vsv-archive-header h1, .vsv-not-found h1 {
  margin: 0;
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}
.vsv-hero h1 { max-width: 780px; font-size: 5.5rem; text-transform: uppercase; }
.vsv-hero-lead { max-width: 620px; margin: 24px 0 0; color: rgba(255,255,255,0.82); font-size: 1.18rem; }
.vsv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.vsv-hero-stat, .vsv-hero-panel {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--vsv-radius);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--vsv-shadow);
  transition: transform 220ms var(--vsv-ease), border-color 220ms var(--vsv-ease), background 220ms var(--vsv-ease);
}
.vsv-hero-panel:hover, .vsv-hero-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(183,232,255,0.52);
  background: rgba(255,255,255,0.16);
}
.vsv-hero-stat { grid-column: 1; grid-row: 3; width: 230px; padding: 22px; }
.vsv-hero-stat span { display: block; font-size: 3.2rem; line-height: 1; font-weight: 950; color: var(--vsv-blue); }
.vsv-hero-stat p { margin: 8px 0 0; color: rgba(255,255,255,0.82); }
.vsv-hero-panel { display: block; text-decoration: none; color: var(--vsv-white); padding: 24px; }
.vsv-hero-panel span { display: block; color: var(--vsv-blue); font-size: 0.82rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.vsv-hero-panel strong { display: block; font-size: 1.15rem; line-height: 1.25; }
.vsv-hero-panel-a { grid-column: 2 / 4; grid-row: 2; min-height: 150px; background: rgba(20,19,18,0.64); }
.vsv-hero-panel-b { grid-column: 3; grid-row: 3; min-height: 170px; background: rgba(101,7,199,0.54); }

.vsv-section, .vsv-page-shell, .vsv-single, .vsv-archive-header, .vsv-footer-grid, .vsv-footer-cta, .vsv-footer-bottom {
  width: min(var(--vsv-max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.vsv-section { padding: 86px 0; }
.vsv-section-heading { max-width: 680px; margin-bottom: 30px; }
.vsv-section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; max-width: none; }
.vsv-section h2, .vsv-footer-cta h2, .vsv-split-copy h2, .vsv-form-section h2 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.vsv-card-grid { display: grid; gap: 18px; }
.vsv-card-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vsv-card, .vsv-post-card, .vsv-price-card {
  border: 1px solid var(--vsv-line);
  border-radius: var(--vsv-radius);
  background: var(--vsv-white);
  box-shadow: 0 16px 45px rgba(20, 19, 18, 0.06);
  transition: transform 220ms var(--vsv-ease), box-shadow 220ms var(--vsv-ease), border-color 220ms var(--vsv-ease);
}
.vsv-card:hover, .vsv-post-card:hover, .vsv-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(118, 207, 255, 0.72);
  box-shadow: 0 24px 58px rgba(20, 19, 18, 0.11);
}
.vsv-card { min-height: 220px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.vsv-card-lift { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.vsv-card-number { margin: 0; color: var(--vsv-blue-strong); font-size: 0.85rem; font-weight: 950; }
.vsv-card h3 { margin: 28px 0 8px; font-size: 1.45rem; }
.vsv-card p { margin: 0; color: var(--vsv-muted); }
.vsv-card a { margin-top: 22px; color: var(--vsv-purple); font-weight: 900; text-decoration: none; }
.vsv-link-card { color: var(--vsv-purple); font-size: 1.25rem; font-weight: 900; text-decoration: none; }

.vsv-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); gap: 52px; align-items: center; }
.vsv-media-frame { border-radius: var(--vsv-radius); overflow: hidden; box-shadow: var(--vsv-shadow); background: var(--vsv-cloud); transition: transform 260ms var(--vsv-ease), box-shadow 260ms var(--vsv-ease); }
.vsv-media-frame:hover { transform: translateY(-3px); box-shadow: 0 30px 78px rgba(20, 19, 18, 0.18); }
.vsv-media-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 800ms var(--vsv-ease-out); }
.vsv-media-frame:hover img { transform: scale(1.035); }
.vsv-split-copy p { color: var(--vsv-muted); }
.vsv-check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.vsv-check-list li { position: relative; padding-left: 30px; color: var(--vsv-graphite); }
.vsv-check-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 14px; height: 14px; border-radius: 4px; background: var(--vsv-blue-strong); box-shadow: inset 0 0 0 4px #e9f7ff; }

.vsv-pricing-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 46px;
  border-radius: var(--vsv-radius);
  background: #17151c;
  color: var(--vsv-white);
}
.vsv-pricing-mini { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.vsv-pricing-mini div { min-height: 150px; padding: 20px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--vsv-radius); background: rgba(255,255,255,0.08); }
.vsv-pricing-mini span, .vsv-price-card span { display: block; font-weight: 900; color: var(--vsv-blue); text-transform: uppercase; font-size: 0.78rem; }
.vsv-pricing-mini strong { display: block; margin: 12px 0; font-size: 2rem; line-height: 1.05; }
.vsv-pricing-mini em { display: block; color: rgba(255,255,255,0.72); font-style: normal; }

.vsv-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.vsv-post-card { overflow: hidden; }
.vsv-post-card a { display: block; height: 100%; color: inherit; text-decoration: none; }
.vsv-post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--vsv-cloud); transition: transform 800ms var(--vsv-ease-out); }
.vsv-post-card:hover img { transform: scale(1.035); }
.vsv-post-card span, .vsv-post-card h3, .vsv-post-card h2, .vsv-post-card p { display: block; margin-left: 20px; margin-right: 20px; }
.vsv-post-card span { margin-top: 18px; color: var(--vsv-purple); font-weight: 900; font-size: 0.82rem; }
.vsv-post-card h3, .vsv-post-card h2 { margin-top: 8px; margin-bottom: 8px; font-size: 1.2rem; line-height: 1.2; }
.vsv-post-card p { margin-top: 0; margin-bottom: 22px; color: var(--vsv-muted); }

.vsv-page-hero {
  width: min(var(--vsv-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: center;
}
.vsv-page-hero h1 { font-size: 4.1rem; }
.vsv-page-hero-copy p:not(.vsv-kicker) { max-width: 620px; color: var(--vsv-muted); font-size: 1.12rem; }
.vsv-page-hero-media { border-radius: var(--vsv-radius); overflow: hidden; background: #111; box-shadow: var(--vsv-shadow); transition: transform 260ms var(--vsv-ease), box-shadow 260ms var(--vsv-ease); }
.vsv-page-hero-media:hover { transform: translateY(-3px); box-shadow: 0 30px 78px rgba(20, 19, 18, 0.18); }
.vsv-page-hero-media img, .vsv-page-hero-media video { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform 900ms var(--vsv-ease-out); }
.vsv-page-hero-media:hover img, .vsv-page-hero-media:hover video { transform: scale(1.025); }
.vsv-page-section { padding-top: 34px; }
.vsv-pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.vsv-price-card { padding: 26px; min-height: 210px; }
.vsv-price-card span { color: var(--vsv-purple); }
.vsv-price-card strong { display: block; margin: 12px 0 18px; font-size: 2.6rem; line-height: 1; }
.vsv-price-card p { margin: 0; color: var(--vsv-muted); }
.vsv-faq-list { display: grid; gap: 12px; max-width: 900px; }
.vsv-faq-list details { border: 1px solid var(--vsv-line); border-radius: var(--vsv-radius); padding: 18px 20px; background: var(--vsv-white); }
.vsv-faq-list summary { cursor: pointer; font-weight: 900; }
.vsv-faq-list p { color: var(--vsv-muted); margin-bottom: 0; }

.vsv-legacy-section { padding-top: 28px; }
.vsv-legacy-content { max-width: 980px; margin: 0 auto; display: grid; gap: 20px; }
.vsv-legacy-content > * { margin-top: 0; margin-bottom: 0; }
.vsv-legacy-content h2 { margin-top: 22px; font-size: 2.2rem; line-height: 1.08; letter-spacing: 0; }
.vsv-legacy-content h3 { margin-top: 14px; font-size: 1.45rem; line-height: 1.16; letter-spacing: 0; }
.vsv-legacy-content p, .vsv-legacy-content li { color: var(--vsv-graphite); }
.vsv-legacy-content strong { color: var(--vsv-ink); }
.vsv-legacy-content a { color: var(--vsv-purple); font-weight: 900; text-decoration: none; }
.vsv-legacy-content a:hover { text-decoration: underline; }
.vsv-legacy-content ul, .vsv-legacy-content ol { margin: 0; padding-left: 24px; display: grid; gap: 8px; }
.vsv-legacy-content img, .vsv-legacy-content video { width: auto; max-width: 100%; border-radius: var(--vsv-radius); box-shadow: 0 16px 45px rgba(20, 19, 18, 0.08); }
.vsv-legacy-content video { width: min(100%, 760px); background: #111; }
.vsv-legacy-content table { width: 100%; border-collapse: collapse; background: var(--vsv-white); border: 1px solid var(--vsv-line); border-radius: var(--vsv-radius); overflow: hidden; }
.vsv-legacy-content th, .vsv-legacy-content td { padding: 12px; border-bottom: 1px solid var(--vsv-line); text-align: left; vertical-align: top; }
.vsv-legacy-content blockquote { margin: 0; padding: 20px 24px; border-left: 4px solid var(--vsv-blue-strong); background: var(--vsv-cloud); color: var(--vsv-graphite); }

.vsv-hiw-intro, .vsv-hiw-split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr); gap: 52px; align-items: center; }
.vsv-hiw-intro { padding-top: 34px; }
.vsv-hiw-copy { display: grid; gap: 16px; }
.vsv-hiw-copy h2, .vsv-hiw-band h2, .vsv-hiw-video-section h2, .vsv-hiw-cta h2 { margin: 0; font-size: 2.65rem; line-height: 1.04; letter-spacing: 0; }
.vsv-hiw-copy p { margin: 0; color: var(--vsv-graphite); font-size: 1.04rem; }
.vsv-hiw-media { border-radius: var(--vsv-radius); overflow: hidden; background: var(--vsv-cloud); box-shadow: var(--vsv-shadow); transition: transform 260ms var(--vsv-ease), box-shadow 260ms var(--vsv-ease); }
.vsv-hiw-media:hover { transform: translateY(-3px); box-shadow: 0 30px 78px rgba(20, 19, 18, 0.18); }
.vsv-hiw-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 900ms var(--vsv-ease-out); }
.vsv-hiw-media:hover img { transform: scale(1.025); }
.vsv-hiw-media-wide img { aspect-ratio: 16 / 10; }
.vsv-hiw-band { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: 34px; align-items: stretch; padding: 48px; border-radius: var(--vsv-radius); background: #151419; color: var(--vsv-white); }
.vsv-hiw-band .vsv-kicker { color: var(--vsv-blue); }
.vsv-hiw-band h2 { color: var(--vsv-white); }
.vsv-hiw-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.vsv-hiw-points article { min-height: 220px; padding: 22px; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--vsv-radius); background: rgba(255,255,255,0.07); transition: transform 220ms var(--vsv-ease), border-color 220ms var(--vsv-ease), background 220ms var(--vsv-ease); }
.vsv-hiw-points article:hover { transform: translateY(-4px); border-color: rgba(183,232,255,0.5); background: rgba(255,255,255,0.1); }
.vsv-hiw-points span { display: block; color: var(--vsv-blue); font-weight: 950; font-size: 0.8rem; }
.vsv-hiw-points h3 { margin: 34px 0 10px; color: var(--vsv-white); font-size: 1.25rem; line-height: 1.15; }
.vsv-hiw-points p { margin: 0; color: rgba(255,255,255,0.74); }
.vsv-hiw-video-section { padding-top: 40px; }
.vsv-hiw-video { width: min(100%, 860px); max-height: 780px; border-radius: var(--vsv-radius); background: #111; box-shadow: var(--vsv-shadow); }
.vsv-hiw-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 38px; border-radius: var(--vsv-radius); background: var(--vsv-cloud); }
.vsv-hiw-cta p { margin: 10px 0 0; color: var(--vsv-muted); }

.vsv-form-section { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr); gap: 32px; align-items: start; }
.vsv-form { display: grid; gap: 14px; padding: 24px; border: 1px solid var(--vsv-line); border-radius: var(--vsv-radius); background: var(--vsv-cloud); }
.vsv-form label { display: grid; gap: 7px; font-weight: 800; color: var(--vsv-graphite); }
.vsv-form input, .vsv-form textarea, .vsv-form select { width: 100%; border: 1px solid #cfd8e6; border-radius: var(--vsv-radius); padding: 12px 13px; background: var(--vsv-white); color: var(--vsv-ink); transition: border-color 180ms var(--vsv-ease), box-shadow 180ms var(--vsv-ease), transform 180ms var(--vsv-ease); }
.vsv-form input:focus, .vsv-form textarea:focus { outline: 3px solid rgba(183,232,255,0.86); border-color: var(--vsv-purple); box-shadow: 0 10px 24px rgba(101, 7, 199, 0.08); }
.vsv-form input:hover, .vsv-form textarea:hover, .vsv-form select:hover { border-color: rgba(101, 7, 199, 0.45); }
.vsv-form .vsv-checkbox { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0 2px; font-weight: 700; line-height: 1.35; }
.vsv-form .vsv-checkbox input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; padding: 0; accent-color: var(--vsv-purple); }
.vsv-form .vsv-checkbox span { color: var(--vsv-graphite); }
.vsv-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.vsv-alert { margin: 0 0 16px; padding: 13px 15px; border-radius: var(--vsv-radius); background: #e9fbf7; color: #086a59; font-weight: 800; }
.vsv-alert-warning { background: #fff7df; color: #795200; }
.vsv-alert-error { background: #fdecec; color: #8a1f1f; }

.vsv-page-shell, .vsv-single, .vsv-archive-header { padding: 76px 0; }
.vsv-page-shell h1, .vsv-archive-header h1 { font-size: 3.7rem; max-width: 820px; }
.vsv-entry-content { max-width: 860px; }
.vsv-entry-content > *:first-child { margin-top: 0; }
.vsv-entry-content h2 { font-size: 2rem; line-height: 1.16; margin-top: 2em; }
.vsv-entry-content p, .vsv-entry-content li { color: var(--vsv-graphite); }
.vsv-entry-content img { border-radius: var(--vsv-radius); }
.vsv-single { max-width: 930px; }
.vsv-single-header { margin-bottom: 34px; }
.vsv-single h1 { font-size: 4rem; }
.vsv-single-header p:not(.vsv-kicker) { color: var(--vsv-muted); font-size: 1.12rem; }
.vsv-single-media { border-radius: var(--vsv-radius); overflow: hidden; margin-bottom: 36px; box-shadow: var(--vsv-shadow); }
.vsv-single-media img { width: 100%; max-height: 540px; object-fit: cover; }
.vsv-post-nav { width: min(930px, calc(100% - 40px)); margin: 0 auto 80px; display: flex; justify-content: space-between; gap: 20px; }
.vsv-post-nav a { color: var(--vsv-purple); font-weight: 900; text-decoration: none; }
.vsv-archive-section { padding-top: 0; }
.vsv-pagination { margin-top: 34px; }
.vsv-commerce-shell { max-width: 1080px; }
.woocommerce .button, .woocommerce button.button, .woocommerce a.button, .woocommerce input.button { background: var(--vsv-purple); color: var(--vsv-white); border-radius: var(--vsv-radius); font-weight: 900; }
.woocommerce .button:hover, .woocommerce button.button:hover, .woocommerce a.button:hover, .woocommerce input.button:hover { background: var(--vsv-purple-deep); color: var(--vsv-white); }

.vsv-footer { margin-top: 40px; background: #11141b; color: var(--vsv-white); padding: 54px 0 24px; }
.vsv-footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 30px; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--vsv-radius); background: rgba(255,255,255,0.06); }
.vsv-footer-cta h2 { max-width: 650px; }
.vsv-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; padding: 48px 0 34px; }
.vsv-footer-brand { display: inline-block; margin-bottom: 12px; color: var(--vsv-white); text-decoration: none; font-size: 1.4rem; font-weight: 950; }
.vsv-footer p { color: rgba(255,255,255,0.72); margin: 0; }
.vsv-footer h2 { margin: 0 0 12px; font-size: 1rem; }
.vsv-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.vsv-footer a { color: rgba(255,255,255,0.76); text-decoration: none; }
.vsv-footer a:hover { color: var(--vsv-blue); }
.vsv-footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.62); font-size: 0.9rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .vsv-js [data-vsv-reveal] {
    opacity: 1;
    transform: none;
  }
  .vsv-scroll-progress { transition: none; }
}

@media (max-width: 980px) {
  .admin-bar .vsv-header { top: 46px; }
  .vsv-header-inner { width: min(100% - 28px, var(--vsv-max)); }
  .vsv-menu-toggle { display: inline-block; }
  .vsv-nav { position: absolute; left: 14px; right: 14px; top: 76px; display: none; padding: 16px; border-radius: var(--vsv-radius); background: rgba(20,19,18,0.96); box-shadow: var(--vsv-shadow); }
  .vsv-nav.is-open { display: block; }
  .vsv-nav-list { display: grid; gap: 6px; }
  .vsv-nav-list a { display: block; padding: 12px; }
  .vsv-hero { min-height: auto; }
  .vsv-hero-grid { min-height: 690px; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; padding-top: 72px; }
  .vsv-hero-copy { grid-column: 1 / 3; }
  .vsv-hero h1 { font-size: 4rem; }
  .vsv-hero-stat { grid-column: 1; grid-row: auto; width: auto; }
  .vsv-hero-panel-a, .vsv-hero-panel-b { grid-column: auto; grid-row: auto; min-height: 150px; }
  .vsv-card-grid-three, .vsv-post-grid, .vsv-pricing-mini, .vsv-pricing-grid, .vsv-footer-grid, .vsv-hiw-points { grid-template-columns: 1fr 1fr; }
  .vsv-split, .vsv-page-hero, .vsv-form-section, .vsv-pricing-band, .vsv-hiw-intro, .vsv-hiw-split, .vsv-hiw-band { grid-template-columns: 1fr; }
  .vsv-hiw-band { padding: 34px; }
  .vsv-page-hero h1, .vsv-single h1, .vsv-page-shell h1, .vsv-archive-header h1 { font-size: 3rem; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .vsv-header-actions .vsv-button { display: none; }
  .vsv-section, .vsv-page-shell, .vsv-single, .vsv-archive-header { width: min(100% - 28px, var(--vsv-max)); padding: 58px 0; }
  .vsv-hero-grid { width: min(100% - 28px, var(--vsv-max)); min-height: 760px; grid-template-columns: 1fr; gap: 14px; padding-bottom: 38px; }
  .vsv-hero-copy, .vsv-hero-panel-a, .vsv-hero-panel-b, .vsv-hero-stat { grid-column: 1; }
  .vsv-hero h1 { font-size: 3.15rem; }
  .vsv-hero-lead { font-size: 1rem; }
  .vsv-section h2, .vsv-footer-cta h2, .vsv-split-copy h2, .vsv-form-section h2 { font-size: 2.05rem; }
  .vsv-card-grid-three, .vsv-post-grid, .vsv-pricing-mini, .vsv-pricing-grid, .vsv-footer-grid, .vsv-hiw-points { grid-template-columns: 1fr; }
  .vsv-page-hero { width: min(100% - 28px, var(--vsv-max)); padding: 58px 0 28px; grid-template-columns: 1fr; }
  .vsv-page-hero h1, .vsv-single h1, .vsv-page-shell h1, .vsv-archive-header h1 { font-size: 2.45rem; }
  .vsv-hiw-copy h2, .vsv-hiw-band h2, .vsv-hiw-video-section h2, .vsv-hiw-cta h2 { font-size: 2.05rem; }
  .vsv-hiw-band, .vsv-hiw-cta { padding: 24px; }
  .vsv-hiw-cta { flex-direction: column; align-items: flex-start; }
  .vsv-footer-cta, .vsv-footer-bottom, .vsv-section-heading-row, .vsv-post-nav { flex-direction: column; align-items: flex-start; }
}

/* Glassmorphism refinement layer */
.vsv-header,
.vsv-nav,
.vsv-button-ghost,
.vsv-button-light,
.vsv-hero-stat,
.vsv-hero-panel,
.vsv-card,
.vsv-post-card,
.vsv-price-card,
.vsv-faq-list details,
.vsv-form,
.vsv-pricing-band,
.vsv-pricing-mini div,
.vsv-page-hero-media,
.vsv-media-frame,
.vsv-hiw-media,
.vsv-hiw-band,
.vsv-hiw-points article,
.vsv-hiw-video,
.vsv-hiw-cta,
.vsv-footer-cta {
  position: relative;
  overflow: hidden;
}

.vsv-card,
.vsv-post-card,
.vsv-price-card,
.vsv-faq-list details,
.vsv-form,
.vsv-hiw-cta {
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.64) 100%);
  border-color: rgba(255,255,255,0.74);
  box-shadow: var(--vsv-glass-shadow);
}

.vsv-card::before,
.vsv-post-card::before,
.vsv-price-card::before,
.vsv-faq-list details::before,
.vsv-form::before,
.vsv-hiw-cta::before,
.vsv-footer-cta::before,
.vsv-pricing-band::before,
.vsv-hiw-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.08) 34%, rgba(118,207,255,0.12) 100%);
  opacity: 0.8;
}

.vsv-card > *,
.vsv-post-card > *,
.vsv-price-card > *,
.vsv-faq-list details > *,
.vsv-form > *,
.vsv-hiw-cta > *,
.vsv-footer-cta > *,
.vsv-pricing-band > *,
.vsv-hiw-band > * {
  position: relative;
  z-index: 1;
}

.vsv-header {
  position: sticky;
  background: rgba(42, 40, 43, 0.56);
  border-bottom-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 44px rgba(20,19,18,0.1), inset 0 1px 0 rgba(255,255,255,0.14);
}
.vsv-header.is-scrolled { background: rgba(28,27,30,0.72); }
.vsv-header,
.vsv-nav { overflow: visible; }
.vsv-scroll-progress { height: 3px; background: linear-gradient(90deg, var(--vsv-purple) 0%, var(--vsv-blue) 52%, var(--vsv-blue-strong) 100%); }
.vsv-nav {
  padding: 8px 14px;
  border-radius: var(--vsv-radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 14px 34px rgba(20,19,18,0.1);
}
.vsv-nav-list a::after { bottom: -6px; }
.vsv-nav-list a[aria-current="page"] { text-shadow: 0 0 18px rgba(183,232,255,0.32); }

.vsv-button-ghost,
.vsv-button-light {
  border-color: rgba(255,255,255,0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48), 0 16px 38px rgba(20,19,18,0.1);
}
.vsv-button-light { background: rgba(255,255,255,0.78); }
.vsv-button-ghost { background: rgba(255,255,255,0.12); }

.vsv-hero-stat,
.vsv-hero-panel,
.vsv-pricing-mini div,
.vsv-hiw-points article,
.vsv-footer-cta {
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 28px 86px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.28);
}
.vsv-hero-panel-a { background: linear-gradient(145deg, rgba(20,19,18,0.56), rgba(20,19,18,0.32)); }
.vsv-hero-panel-b { background: linear-gradient(145deg, rgba(101,7,199,0.6), rgba(183,232,255,0.16)); }
.vsv-hero-panel:hover,
.vsv-hero-stat:hover,
.vsv-hiw-points article:hover,
.vsv-pricing-mini div:hover {
  border-color: rgba(183,232,255,0.66);
  box-shadow: 0 34px 96px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.38);
}

.vsv-pricing-band,
.vsv-hiw-band {
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgba(21,20,25,0.86) 0%, rgba(52,22,82,0.66) 58%, rgba(13,22,34,0.72) 100%);
  box-shadow: 0 34px 96px rgba(20,19,18,0.24), inset 0 1px 0 rgba(255,255,255,0.2);
}

.vsv-page-hero-media,
.vsv-media-frame,
.vsv-hiw-media,
.vsv-hiw-video {
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: 0 34px 96px rgba(20,19,18,0.16), inset 0 1px 0 rgba(255,255,255,0.62);
}
.vsv-page-hero-media::after,
.vsv-media-frame::after,
.vsv-hiw-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), inset 0 -18px 40px rgba(101,7,199,0.12);
}

.vsv-form input,
.vsv-form textarea,
.vsv-form select {
  background: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 8px 24px rgba(20,19,18,0.04);
}
.vsv-form input:focus,
.vsv-form textarea:focus {
  background: rgba(255,255,255,0.94);
}

.vsv-footer { background: linear-gradient(135deg, #10131a 0%, #191426 58%, #0f151c 100%); }
.vsv-footer-cta { border-color: rgba(255,255,255,0.24); background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05)); }

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .vsv-header,
  .vsv-nav,
  .vsv-button-ghost,
  .vsv-button-light,
  .vsv-hero-stat,
  .vsv-hero-panel,
  .vsv-card,
  .vsv-post-card,
  .vsv-price-card,
  .vsv-faq-list details,
  .vsv-form,
  .vsv-pricing-band,
  .vsv-pricing-mini div,
  .vsv-page-hero-media,
  .vsv-media-frame,
  .vsv-hiw-media,
  .vsv-hiw-band,
  .vsv-hiw-points article,
  .vsv-hiw-video,
  .vsv-hiw-cta,
  .vsv-footer-cta {
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
  }
  .vsv-header { -webkit-backdrop-filter: blur(24px) saturate(160%); backdrop-filter: blur(24px) saturate(160%); }
  .vsv-page-hero-media,
  .vsv-media-frame,
  .vsv-hiw-media,
  .vsv-hiw-video { -webkit-backdrop-filter: blur(10px) saturate(118%); backdrop-filter: blur(10px) saturate(118%); }
}

@media (max-width: 980px) {
  .vsv-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    padding: 16px;
    background: rgba(20,19,18,0.92);
    border-color: rgba(255,255,255,0.24);
    box-shadow: 0 26px 76px rgba(20,19,18,0.28), inset 0 1px 0 rgba(255,255,255,0.22);
  }
  .vsv-nav-list a {
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
  }
  .vsv-nav-list a:hover,
  .vsv-nav-list a:focus,
  .vsv-nav-list a[aria-current="page"] {
    background: rgba(183,232,255,0.1);
  }
}

@media (max-width: 680px) {
  .vsv-card,
  .vsv-post-card,
  .vsv-price-card,
  .vsv-form,
  .vsv-hiw-cta {
    background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76));
  }
  .vsv-nav { background: rgba(20,19,18,0.92); }
}

.vsv-prep-intro,
.vsv-prep-coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 52px;
  align-items: center;
}
.vsv-prep-copy { display: grid; gap: 16px; }
.vsv-prep-copy h2,
.vsv-prep-flow-section h2,
.vsv-prep-pricing-section h2,
.vsv-prep-included h2,
.vsv-prep-tools h2,
.vsv-prep-checklist-card h2,
.vsv-prep-cta h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.04;
  letter-spacing: 0;
}
.vsv-prep-copy p { margin: 0; color: var(--vsv-graphite); font-size: 1.04rem; }
.vsv-prep-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.68fr);
  gap: 14px;
}
.vsv-prep-visual figure {
  margin: 0;
  min-height: 180px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: var(--vsv-radius);
  overflow: hidden;
  background: rgba(255,255,255,0.52);
  box-shadow: var(--vsv-glass-shadow);
}
.vsv-prep-visual figure:first-child { grid-row: span 2; }
.vsv-prep-visual img { width: 100%; height: 100%; object-fit: cover; }
.vsv-prep-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.vsv-prep-flow li,
.vsv-prep-package,
.vsv-prep-tool,
.vsv-prep-checklist-card,
.vsv-prep-coverage-media,
.vsv-prep-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--vsv-radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.62));
  box-shadow: var(--vsv-glass-shadow);
}
.vsv-prep-flow li { min-height: 240px; padding: 24px; }
.vsv-prep-flow span,
.vsv-prep-package span,
.vsv-prep-tool span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(101,7,199,0.1);
  color: var(--vsv-purple);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.vsv-prep-flow strong { display: block; margin: 34px 0 8px; font-size: 1.32rem; line-height: 1.08; }
.vsv-prep-flow p,
.vsv-prep-package p,
.vsv-prep-tool p,
.vsv-prep-heading-row > p,
.vsv-prep-coverage-media p,
.vsv-prep-cta p { margin: 0; color: var(--vsv-muted); }
.vsv-prep-heading-row { align-items: center; margin-bottom: 26px; }
.vsv-prep-heading-row > p { max-width: 420px; }
.vsv-prep-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.vsv-prep-package { min-height: 390px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.vsv-prep-package strong { display: block; color: var(--vsv-ink); font-size: 3rem; line-height: 0.95; letter-spacing: 0; }
.vsv-prep-package em { color: var(--vsv-graphite); font-style: normal; font-weight: 900; }
.vsv-prep-package .vsv-button { margin-top: auto; width: 100%; }
.vsv-prep-included {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
  padding: 48px;
  border-radius: var(--vsv-radius);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--vsv-white);
  background: linear-gradient(135deg, rgba(21,20,25,0.88), rgba(52,22,82,0.68) 58%, rgba(13,22,34,0.72));
  box-shadow: 0 34px 96px rgba(20,19,18,0.24), inset 0 1px 0 rgba(255,255,255,0.2);
}
.vsv-prep-included .vsv-kicker { color: var(--vsv-blue); }
.vsv-prep-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.vsv-prep-service-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--vsv-radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06));
}
.vsv-prep-service-grid h3 { margin: 0 0 18px; color: var(--vsv-white); font-size: 1.25rem; }
.vsv-prep-service-grid p { margin: 0; color: rgba(255,255,255,0.74); }
.vsv-prep-service-grid ul,
.vsv-prep-checklist-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.vsv-prep-service-grid li,
.vsv-prep-checklist-card li { position: relative; padding-left: 24px; }
.vsv-prep-service-grid li { color: rgba(255,255,255,0.78); }
.vsv-prep-service-grid li::before,
.vsv-prep-checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--vsv-blue-strong);
}
.vsv-prep-tools .vsv-prep-heading-row img {
  width: min(260px, 34vw);
  aspect-ratio: 6 / 4;
  object-fit: cover;
  border-radius: var(--vsv-radius);
  box-shadow: var(--vsv-glass-shadow);
}
.vsv-prep-tool-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.vsv-prep-tool { min-height: 290px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.vsv-prep-tool h3 { margin: 8px 0 0; font-size: 1.28rem; line-height: 1.12; }
.vsv-prep-tool a { margin-top: auto; color: var(--vsv-purple); font-weight: 950; text-decoration: none; }
.vsv-prep-checklist-card { padding: 32px; }
.vsv-prep-checklist-card ul { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
.vsv-prep-checklist-card li { color: var(--vsv-graphite); font-weight: 750; }
.vsv-prep-coverage-media { padding: 18px; }
.vsv-prep-coverage-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; }
.vsv-prep-coverage-media div { display: grid; gap: 6px; padding: 22px 8px 8px; }
.vsv-prep-coverage-media strong { color: var(--vsv-purple); font-size: 0.82rem; font-weight: 950; text-transform: uppercase; }
.vsv-prep-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.7));
}
.vsv-prep-cta p { margin-top: 10px; }
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .vsv-prep-flow li,
  .vsv-prep-package,
  .vsv-prep-tool,
  .vsv-prep-checklist-card,
  .vsv-prep-coverage-media,
  .vsv-prep-cta,
  .vsv-prep-visual figure,
  .vsv-prep-service-grid article {
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
  }
}
@media (max-width: 980px) {
  .vsv-prep-intro,
  .vsv-prep-coverage,
  .vsv-prep-included { grid-template-columns: 1fr; }
  .vsv-prep-flow,
  .vsv-prep-pricing-grid,
  .vsv-prep-tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vsv-prep-service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .vsv-prep-copy h2,
  .vsv-prep-flow-section h2,
  .vsv-prep-pricing-section h2,
  .vsv-prep-included h2,
  .vsv-prep-tools h2,
  .vsv-prep-checklist-card h2,
  .vsv-prep-cta h2 { font-size: 2.05rem; }
  .vsv-prep-flow,
  .vsv-prep-pricing-grid,
  .vsv-prep-service-grid,
  .vsv-prep-tool-grid,
  .vsv-prep-checklist-card ul { grid-template-columns: 1fr; }
  .vsv-prep-visual { grid-template-columns: 1fr 1fr; }
  .vsv-prep-visual figure:first-child { grid-column: 1 / 3; }
  .vsv-prep-included,
  .vsv-prep-cta { padding: 24px; }
  .vsv-prep-cta { flex-direction: column; align-items: flex-start; }
  .vsv-prep-tools .vsv-prep-heading-row img { width: 100%; }
}
