﻿/* v-10-random-test-saas — SaaS skin (BEM prefix: vx-) */
/* overflow-x only on html — on body it breaks position:sticky */
html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

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

:root {
  --vx-bg: #0b1020;
  --vx-bg-soft: #121a32;
  --vx-surface: #161f3a;
  --vx-surface-2: #1c2748;
  --vx-card: #1a2444;
  --vx-border: rgba(148, 163, 255, 0.18);
  --vx-text: #e8ecff;
  --vx-muted: #9aa6d1;
  --vx-primary: #6366f1;
  --vx-primary-2: #22d3ee;
  --vx-accent: #a855f7;
  --vx-success: #34d399;
  --vx-danger: #f43f5e;
  --vx-white: #ffffff;
  --vx-radius: 16px;
  --vx-radius-sm: 10px;
  --vx-shadow: 0 18px 50px rgba(2, 6, 23, 0.45);
  --vx-max: 1120px;
  --vx-header-h: 72px;
  --vx-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --vx-display: "Segoe UI", system-ui, sans-serif;
}

body {
  margin: 0;
  font-family: var(--vx-font);
  color: var(--vx-text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(99, 102, 241, 0.25), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(34, 211, 238, 0.18), transparent 50%), var(--vx-bg);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--vx-primary-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.vx-container {
  width: min(100% - 2rem, var(--vx-max));
  margin-inline: auto;
}

.vx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.vx-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Sticky shell */
.vx-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 16, 32, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vx-border);
}

.vx-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--vx-header-h);
  width: 100%;
  max-width: var(--vx-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 2rem);
  box-sizing: border-box;
}

.vx-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--vx-white);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.vx-header__logo:hover {
  text-decoration: none;
}

.vx-header__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, var(--vx-primary), var(--vx-primary-2));
}

.vx-header__mark img,
.vx-header__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vx-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.vx-header__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vx-header__nav a {
  color: var(--vx-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.vx-header__nav a:hover {
  color: var(--vx-white);
  text-decoration: none;
}

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vx-white);
  background: linear-gradient(135deg, var(--vx-primary), var(--vx-accent));
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vx-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.45);
}

.vx-btn--ghost {
  background: transparent;
  border: 1px solid var(--vx-border);
  box-shadow: none;
  color: var(--vx-text);
}

.vx-btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.vx-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--vx-border);
  background: var(--vx-surface);
  color: var(--vx-text);
  cursor: pointer;
}

.vx-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Mobile menu OUTSIDE sticky */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: block;
  visibility: hidden;
  pointer-events: none;
  background: rgba(5, 8, 18, 0);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

#mob-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  background: rgba(5, 8, 18, 0.72);
}

.vx-mob-panel {
  width: min(86vw, 320px);
  height: 100%;
  margin-left: auto;
  background: var(--vx-bg-soft);
  border-left: 1px solid var(--vx-border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

#mob-menu.is-open .vx-mob-panel {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  #mob-menu,
  .vx-mob-panel {
    transition: none;
  }
}

.vx-mob-panel a {
  color: var(--vx-text);
  font-weight: 600;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--vx-border);
}

.vx-mob-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: var(--vx-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.vx-activity {
  width: 100%;
  max-width: var(--vx-max);
  margin: 0 auto 0.65rem;
  padding-inline: clamp(1.25rem, 4.5vw, 2rem);
  box-sizing: border-box;
}

/* Sections */
.vx-section {
  padding: 2.75rem 0;
}

.vx-section--tight {
  padding: 3rem 0;
}

.vx-section__title {
  font-family: var(--vx-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.vx-section__lead {
  color: var(--vx-muted);
  max-width: 62ch;
  margin: 0 0 1.75rem;
}

.vx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--vx-border);
  color: var(--vx-primary-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Hero */
.vx-hero {
  padding: 3.5rem 0 2.5rem;
}

.vx-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.vx-hero__title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.vx-hero__title span {
  background: linear-gradient(135deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vx-hero__text {
  color: var(--vx-muted);
  margin: 0 0 1.25rem;
}

.vx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.vx-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.vx-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-sm);
  padding: 0.85rem;
}

.vx-stat__num {
  font-weight: 800;
  font-size: 1.15rem;
}

.vx-stat__label {
  color: var(--vx-muted);
  font-size: 0.8rem;
}

/* CSS product mock */
.vx-mock {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.12));
  padding: 1px;
  box-shadow: var(--vx-shadow);
}

.vx-mock__window {
  border-radius: 21px;
  background: #0f152b;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.vx-mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--vx-border);
}

.vx-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #475569;
}

.vx-mock__dot:nth-child(1) {
  background: #fb7185;
}
.vx-mock__dot:nth-child(2) {
  background: #fbbf24;
}
.vx-mock__dot:nth-child(3) {
  background: #34d399;
}

.vx-mock__body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 340px;
}

.vx-mock__rail {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid var(--vx-border);
  padding: 0.85rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.vx-mock__rail-item {
  height: 28px;
  border-radius: 8px;
  background: rgba(148, 163, 255, 0.12);
}

.vx-mock__rail-item.is-active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(34, 211, 238, 0.35));
}

.vx-mock__main {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.vx-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.vx-mock__kpi {
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  padding: 0.7rem;
}

.vx-mock__kpi strong {
  display: block;
  font-size: 1.05rem;
}

.vx-mock__kpi span {
  color: var(--vx-muted);
  font-size: 0.72rem;
}

.vx-mock__chart {
  height: 140px;
  border-radius: 14px;
  border: 1px solid var(--vx-border);
  background:
    linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.08) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(148, 163, 255, 0.08) 24px,
      rgba(148, 163, 255, 0.08) 25px
    );
  position: relative;
  overflow: hidden;
}

.vx-mock__chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 48px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.55), rgba(34, 211, 238, 0.7), transparent);
  filter: blur(0.5px);
  clip-path: polygon(0 70%, 12% 55%, 24% 62%, 38% 35%, 52% 48%, 66% 22%, 80% 40%, 100% 18%, 100% 100%, 0 100%);
}

.vx-mock__table {
  display: grid;
  gap: 0.45rem;
}

.vx-mock__row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--vx-muted);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.vx-mock__row strong {
  color: var(--vx-success);
  font-weight: 700;
}

/* Cards / grids */
.vx-grid {
  display: grid;
  gap: 1.25rem;
}

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

.vx-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vx-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vx-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.vx-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
}

.vx-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.vx-card p {
  margin: 0;
  color: var(--vx-muted);
  font-size: 0.95rem;
}

.vx-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: rgba(99, 102, 241, 0.18);
  color: var(--vx-primary-2);
  font-weight: 800;
}

.vx-awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.vx-award-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--vx-border);
}

.vx-award-list h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.vx-award-list p {
  margin: 0;
  color: var(--vx-muted);
  font-size: 0.88rem;
}

.vx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.vx-chip {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--vx-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--vx-text);
}

.vx-store {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: stretch;
}

.vx-store__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  min-width: 168px;
  padding: 0.55rem 0.95rem 0.55rem 0.8rem;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.vx-store__btn:hover {
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
  transform: translateY(-1px);
}

.vx-store__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.vx-store__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.vx-store__copy small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
}

.vx-store__copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.vx-store img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .vx-store__btn {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 0;
  }
}

.vx-banner {
  border-radius: 22px;
  padding: 2rem;
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.28), rgba(168, 85, 247, 0.18));
  border: 1px solid var(--vx-border);
  text-align: center;
}

.vx-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vx-step {
  position: relative;
  padding-top: 0.5rem;
}

.vx-step__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--vx-primary), var(--vx-primary-2));
}

.vx-pay ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: stretch;
}

.vx-pay li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
}

.vx-pay img {
  height: 32px;
  width: auto;
  display: block;
  filter: none;
}

.vx-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.vx-check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--vx-muted);
  font-size: 0.95rem;
}

.vx-check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--vx-success);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}

.vx-feature-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--vx-border);
}

/* FAQ accordion */
.seo-faq .seo-faq__item {
  border: 1px solid var(--vx-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.seo-faq .seo-faq__question {
  margin: 0;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  padding-right: 2.5rem;
}

.seo-faq .seo-faq__question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vx-primary-2);
  font-weight: 700;
}

.seo-faq .seo-faq__item.is-open .seo-faq__question::after {
  content: "–";
}

.seo-faq .seo-faq__answer {
  margin: 0;
  padding: 0 1.1rem;
  color: var(--vx-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.seo-faq .seo-faq__item.is-open .seo-faq__answer {
  max-height: 220px;
  padding-bottom: 1rem;
}

/* Reviews */
.seo-reviews .seo-review {
  height: 100%;
}

.seo-review__author {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.seo-review__rating {
  color: #fbbf24;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.seo-review__body {
  color: var(--vx-muted);
  margin: 0;
}

/* Form */
#form-main {
  scroll-margin-top: 96px;
}

.vx-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.vx-form-card {
  position: relative;
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--vx-shadow);
}

#myform {
  display: grid;
  gap: 0.9rem;
}

.vx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.85rem;
  align-items: start;
}

.vx-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  position: relative;
}

.vx-form-group--phone {
  padding-bottom: 0;
}

.vx-form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--vx-muted);
}

.vx-req {
  color: var(--vx-danger);
}

.vx-form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--vx-border);
  background: var(--vx-bg);
  color: var(--vx-text);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.vx-form-input:focus {
  outline: 2px solid rgba(99, 102, 241, 0.45);
  border-color: var(--vx-primary);
}

.vx-form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--vx-muted);
  font-size: 0.88rem;
}

.vx-form-check input {
  margin-top: 0.25rem;
}

.vx-form-note {
  margin: 0;
  text-align: center;
  color: var(--vx-muted);
  font-size: 0.82rem;
}

.vx-form-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.preloader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border: 4px solid rgba(148, 163, 255, 0.2);
  border-top-color: var(--vx-primary-2);
  border-radius: 50%;
  animation: vx-spin 0.8s linear infinite;
  z-index: 5;
}

.preloader.active {
  display: block;
}

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

#myform #first_name-error,
#myform #last_name-error,
#myform #email-error,
#myform #phone-error,
#myform label.error,
label.error {
  display: block;
  position: static !important;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  margin: 0.45rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #fb7185;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

#myform .iti {
  display: block;
  width: 100%;
  overflow: visible;
  position: relative;
}

#myform .iti #phone-error {
  position: static !important;
  display: block;
  margin-top: 0.45rem;
  top: auto;
  bottom: auto;
}

#myform input.error,
#myform input.error:focus {
  border-color: #fb7185;
}

/* intlTelInput dark fit — flag + dial code vertically centered in the field */
.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}

#myform .iti__flag-container {
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  width: auto;
  height: auto;
  padding: 0;
  display: flex;
  align-items: center;
}

#myform .iti__selected-flag {
  width: auto;
  height: 3.15rem;
  min-height: 0;
  padding: 0 8px 0 10px;
  display: flex;
  align-items: center;
}

#myform .iti--separate-dial-code .iti__selected-dial-code {
  line-height: 1;
}

#myform .iti--separate-dial-code input[type="tel"],
#myform input.phone,
.iti input[type="tel"] {
  width: 100%;
  height: 3.15rem;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid var(--vx-border);
  background: var(--vx-bg);
  color: var(--vx-text);
  font: inherit;
  line-height: calc(3.15rem - 2px);
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0.85rem;
  padding-left: 5.25rem !important;
}

/* Footer */
.vx-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--vx-border);
  background: rgba(0, 0, 0, 0.2);
}

.vx-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.vx-footer__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.vx-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.28);
  text-decoration: none;
}

.vx-footer__social a:hover {
  text-decoration: none;
  background: #f8fafc;
  transform: translateY(-1px);
}

.vx-footer__social img {
  width: 22px;
  height: 22px;
  display: block;
  filter: none;
}

.vx-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  color: var(--vx-muted);
  font-size: 0.9rem;
}

.vx-footer__legal p {
  color: var(--vx-muted);
  font-size: 0.78rem;
  margin: 0 0 0.65rem;
}

/* Inner pages */
.vx-page-hero {
  padding: 2rem 0 0.4rem;
}

.vx-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--vx-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.vx-breadcrumbs a {
  color: var(--vx-primary-2);
}

.vx-prose h2,
.vx-prose h3 {
  margin-top: 1.15rem;
}

.vx-prose > :first-child {
  margin-top: 0;
}

.vx-prose p,
.vx-prose li {
  color: var(--vx-muted);
}

.vx-prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.75rem 0 1rem;
}

.vx-prose li {
  margin-bottom: 0.45rem;
}

/* Contact extras */
.vx-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.25rem 2.75rem;
  align-items: start;
}

#contactForm textarea,
#contactForm input,
#contactForm select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--vx-border);
  background: var(--vx-bg);
  color: var(--vx-text);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

#successPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1200;
  align-items: center;
  justify-content: center;
}

.vx-popup {
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  border-radius: 16px;
  padding: 1.5rem;
  width: min(92vw, 420px);
}

.vx-map {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(148, 163, 255, 0.22);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.35);
}

.vx-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.vx-map-block {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--vx-radius);
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  box-shadow: var(--vx-shadow);
}

.vx-map-block__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.vx-map-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ef4444, #ea580c);
  color: #fff;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35);
  flex-shrink: 0;
}

.vx-map-block__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.vx-contact-grid + .vx-map-block {
  margin-top: 2.5rem;
}

.vx-contact-grid aside,
.vx-contact-grid > form {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.vx-contact-grid .vx-section__title {
  font-size: 1.45rem;
  margin: 0;
}

.vx-contact-grid .vx-section__lead {
  margin: 0 0 0.15rem;
}

.vx-contact-grid aside > h2,
.vx-contact-grid aside > p {
  margin: 0;
}

.vx-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.vx-contact-info li {
  display: block;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.vx-contact-info h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.vx-contact-info p {
  margin: 0;
  color: var(--vx-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.vx-contact-info a {
  color: inherit;
  font-weight: 600;
}

.vx-contact-grid .vx-map {
  margin-top: 0.25rem;
}

.vx-contact-grid .vx-map iframe {
  height: 220px;
}

/* Responsive */
.vx-header__nav .vx-btn,
.vx-header__nav .vx-btn:hover {
  color: var(--vx-white);
}

.vx-drop {
  position: relative;
}

.vx-drop__btn {
  background: transparent;
  border: 0;
  color: var(--vx-muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.vx-drop__menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 240px;
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  padding: 0.5rem;
  z-index: 30;
  box-shadow: var(--vx-shadow);
}

.vx-drop.is-open .vx-drop__menu {
  display: grid;
  gap: 0.15rem;
}

.vx-drop__menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: var(--vx-text);
}

.vx-plan {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vx-plan--featured {
  border-color: var(--vx-primary-2);
  box-shadow: 0 0 0 1px var(--vx-primary-2);
}

.vx-plan__price {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.35rem 0 0.85rem;
}

.vx-plan ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: var(--vx-muted);
  font-size: 0.92rem;
}

.vx-plan .vx-btn {
  margin-top: auto;
}

.vx-example {
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  padding: 1rem;
}

.vx-example div {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--vx-border);
  color: var(--vx-muted);
}

.vx-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.vx-pay span {
  background: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  min-width: 72px;
  min-height: 40px;
  display: grid;
  place-items: center;
}

.vx-pay img {
  height: 24px;
  width: auto;
}

.geo-ai-section {
  padding: 3.5rem 0;
}

.geo-table-wrap {
  overflow-x: visible;
  margin: 1.25rem 0;
  max-width: 100%;
}

.geo-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--vx-card);
  font-size: 0.75rem;
  line-height: 1.35;
}

.geo-table caption {
  font-size: 0.86rem;
  font-weight: 700;
  text-align: left;
  padding: 0 0 0.5rem;
  color: var(--vx-text);
  caption-side: top;
}

.geo-table th,
.geo-table td {
  border: 1px solid var(--vx-border);
  padding: 0.45rem 0.5rem;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}


.geo-risk,
.geo-summary {
  color: var(--vx-muted);
}

.geo-steps {
  max-width: none;
  margin: 1rem 0;
  padding-left: 1.15rem;
  color: var(--vx-muted);
}

.geo-steps li {
  margin: 0.45rem 0;
}

.geo-source-list {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.vx-banner .vx-section__title,
.vx-banner .vx-section__lead,
.vx-banner h3,
.vx-banner p {
  text-align: center;
}

.vx-banner .vx-section__lead {
  margin-left: auto;
  margin-right: auto;
}

.vx-banner ul {
  max-width: 36rem;
  margin: 0.75rem auto 1rem;
  padding: 0;
  list-style: none;
  text-align: center;
}

.vx-calc {
  display: grid;
  gap: 0.75rem;
}

.vx-calc .hidden,
.hidden {
  display: none !important;
}

.vx-auth {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}

@media (max-width: 960px) {
  .vx-hero__grid,
  .vx-awards,
  .vx-split,
  .vx-form-wrap,
  .vx-contact-grid,
  .vx-plans {
    grid-template-columns: 1fr;
  }

  .vx-steps,
  .vx-grid--3,
  .vx-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .vx-header__nav {
    display: none;
  }

  .vx-burger {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 640px) {
  .vx-steps,
  .vx-grid--2,
  .vx-grid--3,
  .vx-grid--4,
  .vx-hero__stats,
  .vx-form-row,
  .vx-form-stats,
  .vx-mock__kpis {
    grid-template-columns: 1fr;
  }

  .vx-mock__body {
    grid-template-columns: 1fr;
  }

  .vx-mock__rail {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--vx-border);
  }

  .vx-section {
    padding: 3rem 0;
  }
}

.seo-faq .seo-faq__item.is-open .seo-faq__answer {
  max-height: 480px;
}
.vx-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.vx-growth-table-wrap {
  margin-top: 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 27, 52, 0.96) 0%, rgba(13, 20, 39, 0.96) 100%);
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(10px);
}

.vx-growth-table__head {
  padding: 1.4rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #1fc76a 0%, #17b7aa 100%);
  color: #ffffff;
}

.vx-growth-table__head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
}

.vx-growth-table__head p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.vx-growth-table__scroll {
  overflow-x: auto;
}

.vx-growth-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.vx-growth-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(232, 236, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(99, 102, 241, 0.18);
}

.vx-growth-table tbody th,
.vx-growth-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.08) 0%, rgba(34, 211, 238, 0.06) 100%);
}

.vx-growth-table tbody tr:last-child th,
.vx-growth-table tbody tr:last-child td {
  border-bottom: 0;
}

.vx-growth-table tbody th {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.vx-growth-table tbody th span {
  display: inline-flex;
  margin-left: 0.55rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: middle;
}

.vx-growth-table tbody tr {
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.vx-growth-table tbody tr:hover th,
.vx-growth-table tbody tr:hover td {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.14) 0%, rgba(34, 211, 238, 0.12) 100%);
}

.vx-growth-table tbody td:nth-child(2) {
  color: #4ade80;
  font-weight: 700;
}

.vx-growth-table tbody td:nth-child(3) {
  color: #7dd3fc;
  font-weight: 700;
}

.vx-growth-table tbody td:nth-child(4) {
  color: #86efac;
  font-weight: 800;
}
.vx-calc-grid > div:first-child {
  display: grid;
  gap: 1rem;
}
.vx-calc-grid .vx-btn {
  margin-top: 0.35rem;
}
.vx-result {
  background: var(--vx-surface);
  border: 1px solid var(--vx-border);
  border-radius: 12px;
  padding: 1rem;
}
.vx-result-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--vx-border);
  color: var(--vx-muted);
}
.vx-review-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.vx-review-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--vx-surface-2);
}
.vx-form-card { position: relative; }
@media (max-width: 960px) {
  .vx-calc-grid { grid-template-columns: 1fr; }
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vx-contact-grid .vx-form-group {
  gap: 0.5rem;
}
.vx-form-group + .vx-btn,
#myform > .vx-btn,
#contactForm > .vx-btn {
  margin-top: 0.15rem;
  width: fit-content;
  min-width: 12rem;
  align-self: flex-start;
}
.vx-popup {
  display: grid;
  gap: 0.85rem;
}
.vx-popup p {
  margin: 0;
}
.vx-popup .vx-btn {
  margin-top: 0.25rem;
}
.vx-prose p:has(> .vx-btn) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.vx-example + .vx-btn {
  margin-top: 0.5rem;
}
.vx-header__tools {
  gap: 0.65rem;
}

/* Contrast + icon visibility */
.vx-footer__social a {
  color: #0f172a;
  background: #ffffff;
}
.vx-footer__social svg {
  display: block;
  stroke: currentColor;
}
.vx-footer__brand > img {
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  box-sizing: border-box;
}
.vx-pay span {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}
.vx-review-head img {
  background: #1c2748;
  border: 1px solid rgba(148, 163, 255, 0.28);
}
.vx-card__icon {
  color: #e8ecff;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
}

/* Header: no horizontal overflow */
.vx-sticky,
.vx-activity,
.vx-header {
  max-width: 100%;
  min-width: 0;
}
.vx-header {
  width: 100%;
}
.vx-header__logo {
  min-width: 0;
  flex: 1 1 auto;
}
.vx-header__logo span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vx-header__tools {
  flex: 0 0 auto;
  gap: 0.75rem;
}
.vx-header__tools .vx-btn {
  flex-shrink: 0;
}
.vx-activity .activity-bar,
.activity-bar-outer {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 960px) {
  .vx-header,
  .vx-activity {
    padding-inline: 1rem;
  }
  .vx-header__tools .vx-btn--ghost.vx-btn--sm {
    display: none;
  }
  .vx-header__tools .vx-btn--sm {
    padding: 0.5rem 0.85rem;
  }
}
@media (max-width: 480px) {
  .vx-header,
  .vx-activity {
    padding-inline: 0.75rem;
    gap: 0.5rem;
  }
  .vx-burger {
    width: 40px;
    height: 40px;
  }
}
/* Stacked blocks: keep gaps between siblings */
.vxgrid + h2,
.vxgrid + .vxsection__title,
.vxplans + .vxbanner,
.vxbanner + p,
.vxcard + h2,
.vxcard + .vxsection__title,
.vxcontainer > .vxcard + .vxcard,
.vxcalc + h2,
.vxcalc-grid + h2,
.vxcalc-grid + .vxsection__title,
.vxcontact-info + .vxmap,
.vxpage-hero + .vxsection,
.vxprose > .vxgrid + h2,
.vxprose > .vxgrid + p {
  margin-top: 1.75rem;
}

.vxsection + .vxsection {
  margin-top: 1.25rem;
}

.vxsection + .vxfooter,
.vxpage-hero + .vxfooter {
  margin-top: 1.25rem;
}

.vxcontact-grid {
  gap: 1.5rem;
  align-items: start;
}

.geo-summary,
.geo-risk {
  margin: 1.25rem 0;
}

.geo-faq {
  margin-top: 1.25rem;
}

h2 + .geo-table-wrap,
h2 + .geo-faq,
h2 + .geo-steps,
.vxsection__title + .geo-table-wrap,
.vxsection__title + .geo-faq,
.vxsection__title + .geo-steps,
.geo-summary + h2,
.geo-summary + .vxsection__title,
.geo-summary + .geo-table-wrap,
.geo-table-wrap + .geo-risk,
.geo-risk + h2,
.geo-risk + .vxsection__title,
.geo-risk + .geo-faq,
.geo-steps + .geo-table-wrap {
  margin-top: 1.5rem;
}

.seo-faq .seo-faq__item + .seo-faq__item {
  margin-top: 0.85rem;
}

.vx-kpi {
  position: relative;
  overflow: hidden;
  min-height: 11.5rem;
}

.vx-kpi::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.vx-kpi--blue { border-color: rgba(99, 102, 241, 0.45); }
.vx-kpi--blue::before { background: #6366f1; }
.vx-kpi--cyan { border-color: rgba(34, 211, 238, 0.45); }
.vx-kpi--cyan::before { background: #22d3ee; }
.vx-kpi--green { border-color: rgba(52, 211, 153, 0.45); }
.vx-kpi--green::before { background: #34d399; }
.vx-kpi--violet { border-color: rgba(168, 85, 247, 0.45); }
.vx-kpi--violet::before { background: #a855f7; }

.vx-kpi__top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.vx-kpi__top h3 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--vx-muted);
  font-weight: 600;
}

.vx-kpi__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(99, 102, 241, 0.2);
  color: #c7d2fe;
}

.vx-kpi--cyan .vx-kpi__icon { background: rgba(34, 211, 238, 0.18); color: #67e8f9; }
.vx-kpi--green .vx-kpi__icon { background: rgba(52, 211, 153, 0.18); color: #6ee7b7; }
.vx-kpi--violet .vx-kpi__icon { background: rgba(168, 85, 247, 0.18); color: #d8b4fe; }

.vx-kpi .vx-stat__num {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1;
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
  color: var(--vx-text);
}

.vx-kpi__live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6ee7b7;
  font-weight: 700;
  margin-right: 0.35rem;
}

.vx-kpi__live::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: vx-pulse 1.6s infinite;
}

@keyframes vx-pulse {
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.vx-meter {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0.65rem 0 0.35rem;
}

.vx-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
}

.vx-metric__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.vx-metric__row h3 { margin: 0; }
.vx-metric__row strong {
  color: #a5b4fc;
  font-size: 1.05rem;
}

.vx-kpi-note { padding: 1.35rem; }

.vx-spark {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 5.5rem;
  margin-top: 1.1rem;
}

.vx-spark span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #818cf8, #22d3ee);
  opacity: 0.85;
}

.vx-dash {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.vx-chart-card h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: baseline;
}

.vx-chart-card h3 span {
  color: var(--vx-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.vx-bars__legend,
.vx-pie__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.vx-bars__key,
.vx-pie__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--vx-muted);
}

.vx-bars__key::before,
.vx-pie__legend i {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 3px;
  display: inline-block;
}

.vx-bars__key--vis::before { background: #3b82f6; }
.vx-bars__key--views::before { background: #10b981; }

.vx-bars__frame {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.5rem;
  min-height: 16rem;
}

.vx-bars__axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.7rem;
  color: var(--vx-muted);
  padding: 0.2rem 0 1.4rem;
}

.vx-bars__plot {
  display: grid;
  grid-template-columns: repeat(9, minmax(2.4rem, 1fr));
  gap: 0.45rem;
  align-items: stretch;
  overflow-x: auto;
  min-height: 16rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--vx-border);
  background-image: repeating-linear-gradient(
    to top,
    transparent 0,
    transparent calc(25% - 1px),
    rgba(148, 163, 184, 0.18) calc(25% - 1px),
    rgba(148, 163, 184, 0.18) 25%
  );
  background-size: 100% calc(100% - 1.4rem);
  background-repeat: no-repeat;
}

.vx-bars__col {
  display: flex;
  flex-direction: column;
  min-width: 2.4rem;
}

.vx-bars__pair {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  min-height: 14rem;
}

.vx-bars__pair i {
  display: block;
  width: 0.7rem;
  border-radius: 4px 4px 2px 2px;
  min-height: 2px;
}

.vx-bars__vis { background: #3b82f6; }
.vx-bars__views { background: #10b981; }

.vx-bars__col em {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-size: 0.68rem;
  color: var(--vx-muted);
  text-align: center;
  white-space: nowrap;
}

.vx-pie {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.vx-pie__donut {
  width: min(14rem, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#3b82f6 0 75%, #10b981 75% 98%, #f59e0b 98% 100%);
  mask: radial-gradient(circle closest-side, transparent 46%, #000 47%);
  -webkit-mask: radial-gradient(circle closest-side, transparent 46%, #000 47%);
}

@media (max-width: 960px) {
  .vx-dash { grid-template-columns: 1fr; }
}

.vx-page-hero + .vx-section {
  padding-top: 0.5rem;
}

.vx-section + .vx-section {
  padding-top: 1.5rem;
}

.vx-banner + *,
.vx-plans + *,
.vx-grid + *,
.vx-split + *,
.vx-steps + *,
.vx-awards + *,
.vx-calc + *,
.vx-calc-grid + *,
.vx-contact-grid + *,
.vx-form-wrap + *,
.vx-map + *,
.geo-table-wrap + *,
.geo-faq + *,
.geo-summary + h2,
.geo-summary + .vx-section__title,
.geo-risk + h2,
.geo-risk + .vx-section__title,
.vx-section .vx-container > * + .vx-section__title,
.vx-section .vx-container > * + h2,
.vx-prose > * + h2,
.vx-prose > * + h3 {
  margin-top: 1.75rem;
}

/* intlTelInput lock: no vertical jump initially or when error appears */
.iti,
#myform .iti,
#myform1 .iti {
  width: 100%;
  display: block;
  position: relative;
  overflow: visible;
}

#myform .iti #phone-error,
#myform1 .iti #phone-error,
#myform1 .iti #phone-1-error,
.iti > label.error,
label.error[id*="phone"] {
  position: static !important;
  display: block !important;
  margin-top: 0.45rem !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  max-width: 100%;
  transform: none !important;
}

#myform .iti__flag-container,
#myform1 .iti__flag-container,
.iti__flag-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  height: 3.15rem !important;
  width: auto !important;
  padding: 0 0 0 10px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  z-index: 2;
}

#myform .iti__selected-flag,
#myform1 .iti__selected-flag,
.iti__selected-flag {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 10px 0 0 !important;
  background: transparent !important;
  box-sizing: border-box !important;
}

.iti__flag,
.iti__arrow,
.iti__selected-dial-code {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  top: 0 !important;
  position: relative !important;
}

.iti__selected-dial-code {
  line-height: 1 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#myform .iti input[type="tel"],
#myform1 .iti input[type="tel"],
.iti input[type="tel"],
.iti input[type="text"],
.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code input[type="text"],
#myform input[name="phone"],
#myform1 input[name="phone"] {
  height: 3.15rem !important;
  min-height: 3.15rem !important;
  max-height: 3.15rem !important;
  box-sizing: border-box !important;
  line-height: calc(3.15rem - 2px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 5.6rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  vertical-align: middle !important;
}

/* === Form-check validation fix === */
/* Checkbox row stays on one line; validation error drops below */
[class*="-form-check"] {
  display: grid !important;
  grid-template-columns: auto 1fr;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
  align-items: start;
  width: 100%;
  cursor: pointer;
}
[class*="-form-check"] input[type="checkbox"] {
  grid-column: 1;
  grid-row: 1;
  margin: 0.25rem 0 0;
  width: 1rem;
  height: 1rem;
  flex: none;
}
[class*="-form-check"] > span {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
[class*="-form-check"] label.error,
[class*="-form-check"] > label.error,
[class*="-form-check"] #consent-error {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block !important;
  position: static !important;
  width: auto !important;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 0 0 calc(1rem + 0.65rem);
  pointer-events: none;
}

/* === Logo png fit === */
[class$="-header__mark"] {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  overflow: visible;
}
[class$="-header__mark"] img {
  object-fit: contain;
}
[class$="-footer__brand"] > img {
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* === Header/activity container align === */
/* Header content + activity bar match .vx-container width */
.vx-sticky {
  width: 100%;
  max-width: 100%;
}
.vx-header {
  width: min(100% - 2rem, var(--vx-max)) !important;
  max-width: var(--vx-max) !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
  box-sizing: border-box;
}
.vx-activity,
.vx-activity.activity-bar-outer {
  width: min(100% - 2rem, var(--vx-max)) !important;
  max-width: var(--vx-max) !important;
  margin-inline: auto !important;
  margin-bottom: 0.65rem;
  padding-inline: 0 !important;
  box-sizing: border-box;
}
.vx-activity .activity-bar,
.activity-bar-outer.vx-activity .activity-bar {
  max-width: 100% !important;
  width: 100%;
  margin-inline: 0;
}
@media (max-width: 960px) {
  .vx-header,
  .vx-activity,
  .vx-activity.activity-bar-outer {
    width: min(100% - 2rem, var(--vx-max)) !important;
    padding-inline: 0 !important;
  }
}

/* === Mock fill === */
.vx-mock__kpi em {
  display: block;
  margin-top: 0.28rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--vx-success, #34d399);
}
.vx-mock__mini {
  display: block;
  height: 4px;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: rgba(148, 163, 255, 0.16);
  overflow: hidden;
}
.vx-mock__mini i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vx-primary, #6366f1), var(--vx-primary-2, #22d3ee));
}
.vx-mock__chart-head {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--vx-muted, #9aa6d1);
}
.vx-mock__chart-head strong {
  color: var(--vx-success, #34d399);
  font-weight: 700;
}
.vx-mock__chart-axis {
  position: absolute;
  z-index: 2;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--vx-muted, #9aa6d1);
}
.vx-mock__rail-item {
  position: relative;
}
.vx-mock__rail-item::after {
  content: attr(data-label);
  display: none;
}
.vx-mock__body {
  min-height: 420px;
}

/* === Mock rail fill === */
.vx-mock__body {
  grid-template-columns: 76px 1fr;
}
.vx-mock__rail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 34px;
  height: auto;
  padding: 0.35rem 0.2rem;
}
.vx-mock__rail-item::after {
  content: none;
  display: none;
}
.vx-mock__rail-icon {
  display: block;
  font-size: 0.82rem;
  line-height: 1;
  color: var(--vx-muted, #9aa6d1);
}
.vx-mock__rail-label {
  display: block;
  font-size: 0.58rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--vx-muted, #9aa6d1);
}
.vx-mock__rail-item.is-active .vx-mock__rail-icon,
.vx-mock__rail-item.is-active .vx-mock__rail-label {
  color: #fff;
}
@media (max-width: 640px) {
  /* rail-fill's 76px|1fr must not win over mobile stack */
  .vx-mock__body {
    grid-template-columns: 1fr !important;
    min-height: 0;
  }
  .vx-mock__rail {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.4rem;
    border-right: 0;
    border-bottom: 1px solid var(--vx-border);
    overflow: hidden;
    padding: 0.55rem 0.65rem;
  }
  .vx-mock__rail-item {
    flex: 1 1 0;
    flex-direction: row;
    min-width: 0;
    min-height: 28px;
    height: auto;
    padding: 0.35rem 0.45rem;
    overflow: hidden;
  }
  .vx-mock__rail-label {
    font-size: 0.65rem;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .vx-mock__main {
    min-width: 0;
    overflow: hidden;
  }
  .vx-mock__kpis {
    grid-template-columns: 1fr;
  }
  .vx-mock__table,
  .vx-mock__row {
    min-width: 0;
  }
  .vx-mock__row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
    font-size: 0.72rem;
  }
}
/* === Prose contact block === */
.vx-prose-contact.vx-banner {
  margin: 2rem auto 0;
  max-width: 42rem;
}

.vx-prose-contact .vx-section__title {
  font-size: 1.25rem;
  margin: 0 0 0.65rem;
}

.vx-prose-contact .vx-section__lead {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
}

.vx-prose-contact__info {
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

.vx-prose-contact__info a {
  color: var(--vx-primary-2);
  font-weight: 600;
}

.vx-prose-contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.25rem 0 1.15rem;
}

.vx-prose > .vx-prose-contact .vx-section__title {
  margin-top: 0;
}

/* === investment-results always visible === */
#investment-results {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* === results-box always visible === */
#results-box {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
