/* =============================================================
   MANAGION — Bordio-Inspired Clean SaaS CSS
   Version: 4.0 — Full Light Redesign
   Brand: Primary #20c2bc | Dark text #0f172a | Light bg #f8fafc
   Prefix: .vh- (safe from backend Bootstrap)
   ============================================================= */

/* -------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (BORDIO LIGHT PALETTE)
   ------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --vh-primary:          #20c2bc;
  --vh-primary-dark:     #0b9e99;
  --vh-primary-light:    #4dd9d5;
  --vh-primary-ultra:    #f0fdfc;
  --vh-secondary:        #4dd9d5;
  --vh-accent:           #f97316;
  --vh-accent-dark:      #e05a00;
  --vh-accent-light:     #fff7ed;

  /* Surface Colors (LIGHT - Bordio style) */
  --vh-bg:               #ffffff;
  --vh-bg-alt:           #f8fafc;
  --vh-bg-alt2:          #f1f5f9;
  --vh-bg-dark:          #0f172a;
  --vh-bg-dark2:         #1e293b;

  /* Text */
  --vh-text-dark:        #0f172a;
  --vh-text-body:        #475569;
  --vh-text-muted:       #94a3b8;
  --vh-text-white:       #ffffff;

  /* Legacy dark tokens kept for backward compat */
  --vh-dark:             #0f172a;
  --vh-dark-2:           #1e293b;
  --vh-dark-3:           #334155;
  --vh-dark-4:           #475569;
  --vh-body:             #f8fafc;
  --vh-text-light:       #94a3b8;
  --vh-gray-50:          #f9fafb;
  --vh-gray-100:         #f3f4f6;
  --vh-gray-200:         #e5e7eb;
  --vh-gray-300:         #d1d5db;
  --vh-gray-400:         #9ca3af;
  --vh-gray-500:         #6b7280;
  --vh-gray-900:         #111827;

  /* Gradients */
  --vh-gradient:         linear-gradient(135deg, #20c2bc 0%, #0b9e99 100%);
  --vh-gradient-rev:     linear-gradient(135deg, #0b9e99 0%, #20c2bc 100%);
  --vh-gradient-text:    linear-gradient(135deg, #20c2bc 0%, #0b5757 100%);

  /* Shadows (Clean, subtle — Bordio style) */
  --vh-shadow-xs:        0 1px 2px rgba(0,0,0,.05);
  --vh-shadow-sm:        0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --vh-shadow-md:        0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --vh-shadow-lg:        0 8px 32px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
  --vh-shadow-xl:        0 20px 60px rgba(0,0,0,.10), 0 4px 16px rgba(0,0,0,.06);
  --vh-shadow-teal:      0 4px 20px rgba(32,194,188,.25);
  --vh-shadow-glow:      0 0 40px rgba(32,194,188,.25);

  /* Borders */
  --vh-border:           #e2e8f0;
  --vh-border-soft:      #f1f5f9;
  --vh-border-primary:   rgba(32,194,188,.3);

  /* Radius */
  --vh-radius-xs:        6px;
  --vh-radius-sm:        10px;
  --vh-radius:           14px;
  --vh-radius-lg:        20px;
  --vh-radius-xl:        28px;
  --vh-radius-full:      9999px;

  /* Typography */
  --vh-font-display:     'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --vh-font-body:        'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Transitions */
  --vh-ease:             cubic-bezier(0.4, 0, 0.2, 1);
  --vh-transition:       all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--vh-font-body) !important;
  color: var(--vh-text-body) !important;
  background: var(--vh-bg) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Force all headings to block + correct font — beats theme.css */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vh-font-display) !important;
  display: block !important;
  color: var(--vh-text-dark) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.2px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }
a:hover { text-decoration: none; }

/* Page wrapper push (for fixed navbar) */
body { padding-top: 72px; }

/* -------------------------------------------------------------
   3. NAVBAR — Clean White (Bordio style)
   ------------------------------------------------------------- */
.vh-navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vh-border) !important;
  padding: 14px 0;
  transition: var(--vh-transition);
  box-shadow: none;
}
.vh-navbar.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,.08) !important;
  padding: 10px 0;
}

/* Brand Logo */
.vh-navbar .navbar-brand {
  font-family: var(--vh-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vh-text-dark) !important;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.vh-navbar .navbar-brand img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: none !important;
}

/* Nav Links */
.vh-navbar .nav-link {
  color: var(--vh-text-body) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 7px 14px !important;
  border-radius: 8px;
  transition: var(--vh-transition);
  position: relative;
}
.vh-navbar .nav-link:hover {
  color: var(--vh-primary) !important;
  background: var(--vh-primary-ultra);
}
.vh-navbar .nav-link.active {
  color: var(--vh-primary) !important;
  background: var(--vh-primary-ultra);
  font-weight: 600;
}

/* Dropdown */
.vh-navbar .dropdown-toggle::after { vertical-align: middle; }
.vh-navbar .dropdown-menu {
  background: #ffffff;
  border: 1px solid var(--vh-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  box-shadow: var(--vh-shadow-lg);
}
.vh-navbar .dropdown-item {
  color: var(--vh-text-body);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.88rem;
  transition: var(--vh-transition);
}
.vh-navbar .dropdown-item:hover { background: var(--vh-primary-ultra); color: var(--vh-primary); }

/* Auth buttons */
.vh-nav-login {
  color: var(--vh-text-body) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--vh-transition);
}
.vh-nav-login:hover { color: var(--vh-primary) !important; background: var(--vh-primary-ultra); }

.vh-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--vh-primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 8px;
  transition: var(--vh-transition);
  text-decoration: none;
  border: none;
}
.vh-nav-cta:hover {
  background: var(--vh-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--vh-shadow-teal);
  text-decoration: none;
}
.vh-nav-cta.dashboard-btn {
  background: var(--vh-accent);
}
.vh-nav-cta.dashboard-btn:hover {
  background: var(--vh-accent-dark);
}

/* Language icon */
.vh-lang-icon { color: var(--vh-primary); margin-right: 5px; }

/* Hamburger */
.vh-navbar .navbar-toggler {
  border: 1.5px solid var(--vh-border);
  border-radius: 8px;
  padding: 7px 10px;
  transition: var(--vh-transition);
}
.vh-navbar .navbar-toggler:hover { border-color: var(--vh-primary); }
.vh-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,23,42,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.vh-navbar .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(32,194,188,.18); outline: none; }

/* Mobile collapse */
@media (max-width: 991px) {
  .vh-navbar .navbar-collapse {
    background: #ffffff;
    border-top: 1px solid var(--vh-border);
    border-radius: 0 0 14px 14px;
    padding: 12px 0 16px;
    margin: 8px -15px -14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .vh-navbar .navbar-nav { padding: 0 12px; gap: 2px; }
  .vh-navbar .nav-link { padding: 10px 14px !important; }
  .vh-nav-cta { display: flex; justify-content: center; margin-top: 4px; }
  .vh-nav-login { display: block; text-align: center; padding: 10px 14px !important; }
  .vh-navbar .dropdown-menu { box-shadow: none; border: 1px solid var(--vh-border); }
  body { padding-top: 66px; }
}

/* -------------------------------------------------------------
   4. SECTION UTILITIES
   ------------------------------------------------------------- */
.vh-section, .vh-sec {
  padding: 88px 0;
}
.vh-sec-sm { padding: 56px 0; }
.vh-sec-lg { padding: 112px 0; }
.bg-off-white, .bg-alt { background: var(--vh-bg-alt) !important; }
.bg-white-pure, .bg-white { background: #ffffff !important; }
.bg-teal-ultra { background: var(--vh-primary-ultra) !important; }

/* ── Section title — clean centered, gradient H2 ── */
.vh-section-title, .vh-stitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0;
  display: block;
}

/* Eyebrow label */
.vh-stitle .tag, .vh-section-title .tag, .vh-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vh-primary-ultra);
  border: 1.5px solid rgba(32,194,188,.28);
  color: var(--vh-primary);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}

/* H2 — gradient dark→teal, clean weight */
.vh-section-title h2, .vh-stitle h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.26 !important;
  letter-spacing: -0.4px !important;
  margin-bottom: 14px !important;
  display: block !important;
  background: linear-gradient(130deg, #0f172a 52%, #1dbdb7) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.vh-section-title h2::after, .vh-stitle h2::after { display: none !important; }

/* Sub-paragraph */
.vh-section-title p, .vh-stitle p {
  font-size: 0.97rem;
  color: var(--vh-text-body);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 auto;
}

/* Left-aligned variant (lead form, showcase) */
.vh-stitle-left {
  text-align: left;
  margin: 0 0 40px;
  max-width: 100%;
  display: block;
}
.vh-stitle-left p { margin: 0; max-width: 460px; }

/* Page hero bar (non-home pages) */
.vh-page-header, .vh-page-hero {
  background: var(--vh-bg-alt);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--vh-border);
  text-align: center;
}
.vh-page-header h1, .vh-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: var(--vh-text-dark) !important;
  display: block !important;
  margin-bottom: 14px;
}
.vh-page-header p, .vh-page-hero p {
  font-size: 1.05rem;
  color: var(--vh-text-body);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Breadcrumb */
.vh-breadcrumb { margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.vh-breadcrumb a { color: var(--vh-text-muted); font-size: 0.85rem; }
.vh-breadcrumb a:hover { color: var(--vh-primary); }
.vh-breadcrumb span { color: var(--vh-text-muted); font-size: 0.85rem; }

/* -------------------------------------------------------------
   5. BUTTON SYSTEM
   ------------------------------------------------------------- */
.vh-btn, .vhbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vh-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--vh-transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.vh-btn:hover, .vhbtn:hover { text-decoration: none; }

/* Primary (teal) */
.vh-btn-primary, .vhbtn-primary, .vhbtn-teal {
  background: var(--vh-primary);
  color: #fff !important;
}
.vh-btn-primary:hover, .vhbtn-primary:hover, .vhbtn-teal:hover {
  background: var(--vh-primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--vh-shadow-teal);
}

/* Outline */
.vh-btn-outline, .vhbtn-outline {
  background: transparent;
  color: var(--vh-text-dark) !important;
  border: 1.5px solid var(--vh-border);
}
.vh-btn-outline:hover, .vhbtn-outline:hover {
  border-color: var(--vh-primary);
  color: var(--vh-primary) !important;
  background: var(--vh-primary-ultra);
}

/* White (for dark backgrounds) */
.vh-btn-white, .vhbtn-white {
  background: #ffffff;
  color: var(--vh-text-dark) !important;
  border: 1.5px solid rgba(255,255,255,.2);
}
.vh-btn-white:hover, .vhbtn-white:hover {
  background: #f8fafc;
  color: var(--vh-primary) !important;
  box-shadow: var(--vh-shadow-md);
}

/* Ghost white (outline on dark bg) */
.vh-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.25);
}
.vh-btn-ghost:hover {
  background: rgba(255,255,255,.2);
  color: #fff !important;
}

/* Large */
.vh-btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
/* Small */
.vh-btn-sm { padding: 7px 16px; font-size: 0.85rem; border-radius: 6px; }

/* -------------------------------------------------------------
   6. FEATURE CARDS
   ------------------------------------------------------------- */
.vhf-card {
  background: #fff;
  border-radius: var(--vh-radius);
  padding: 28px 24px;
  border: 1px solid var(--vh-border);
  height: 100%;
  transition: var(--vh-transition);
  position: relative;
  overflow: hidden;
}
.vhf-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--vh-radius);
  background: linear-gradient(135deg, var(--vh-primary-ultra) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vhf-card:hover {
  box-shadow: var(--vh-shadow-lg);
  border-color: var(--vh-border-primary);
  transform: translateY(-4px);
}
.vhf-card:hover::before { opacity: 1; }
.vhf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vh-primary-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--vh-primary);
  margin-bottom: 16px;
  transition: var(--vh-transition);
  position: relative;
}
.vhf-card:hover .vhf-icon { background: var(--vh-primary); color: #fff; }
.vhf-card h6 {
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  margin-bottom: 8px;
  color: var(--vh-text-dark) !important;
  display: block !important;
}
.vhf-card p {
  font-size: 0.875rem;
  color: var(--vh-text-body);
  line-height: 1.65;
  margin: 0;
}

/* Feature card — top image */
.vhf-card-img {
  width: calc(100% + 48px);
  margin: -28px -24px 20px;
  height: 130px;
  overflow: hidden;
  border-radius: var(--vh-radius) var(--vh-radius) 0 0;
}
.vhf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vhf-card:hover .vhf-card-img img { transform: scale(1.06); }

/* -------------------------------------------------------------
   7. SHOWCASE ROWS
   ------------------------------------------------------------- */
.vhshow-img {
  border-radius: var(--vh-radius-lg);
  overflow: hidden;
  box-shadow: var(--vh-shadow-xl);
  position: relative;
  border: 1px solid var(--vh-border);
}
.vhshow-img img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.vhshow-img:hover img { transform: scale(1.02); }
.vhshow-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--vh-border);
  color: var(--vh-text-dark);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--vh-shadow-md);
}

.vhshow-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vh-primary-ultra);
  border: 1px solid rgba(32,194,188,.2);
  color: var(--vh-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 4px 13px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.vhshow-h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem) !important;
  font-weight: 800 !important;
  color: var(--vh-text-dark) !important;
  letter-spacing: -0.4px;
  line-height: 1.25 !important;
  margin-bottom: 14px;
  display: block !important;
}
.vhshow-p {
  font-size: 1rem;
  color: var(--vh-text-body);
  line-height: 1.78;
  margin-bottom: 22px;
}

.vhshow-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.vhshow-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  font-size: 0.93rem;
  color: var(--vh-text-body);
  border-bottom: 1px solid var(--vh-border-soft);
}
.vhshow-list li:last-child { border-bottom: none; }
.vhshow-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--vh-primary-ultra);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2320c2bc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------------------------------------------------------------
   8. HOW IT WORKS STEPS
   ------------------------------------------------------------- */
.vhstep {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.vhstep-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--vh-gradient);
  color: #fff;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--vh-shadow-teal);
  position: relative;
  z-index: 2;
}
.vhstep-line {
  position: absolute;
  top: 52px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--vh-primary), rgba(32,194,188,.1));
  z-index: 1;
}
.vhstep:last-child .vhstep-line { display: none; }
.vhstep h5 {
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  margin-bottom: 10px;
  color: var(--vh-text-dark) !important;
  display: block !important;
}
.vhstep p {
  font-size: 0.9rem;
  color: var(--vh-text-body);
  line-height: 1.7;
  margin: 0;
}

/* -------------------------------------------------------------
   9. INTEGRATIONS ICONS
   ------------------------------------------------------------- */
.vhint-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--vh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 10px;
  box-shadow: var(--vh-shadow-sm);
  transition: var(--vh-transition);
}
.vhint-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--vh-shadow-lg);
  border-color: var(--vh-primary);
}
.vhint-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vh-text-body);
  text-align: center;
}

/* -------------------------------------------------------------
   10. TESTIMONIALS
   ------------------------------------------------------------- */
.vhtesti {
  background: #fff;
  border-radius: var(--vh-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--vh-shadow-sm);
  border: 1px solid var(--vh-border);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--vh-transition);
}
.vhtesti:hover { box-shadow: var(--vh-shadow-lg); transform: translateY(-3px); }
.vhtesti::before {
  content: '\201C';
  font-size: 5rem;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 16px;
  color: var(--vh-primary);
  opacity: 0.08;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}
.vhtesti-stars { color: #f59e0b; font-size: 0.82rem; margin-bottom: 14px; }
.vhtesti-text {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--vh-text-body);
  margin-bottom: 20px;
  font-style: italic;
}
.vhtesti-author { display: flex; align-items: center; gap: 11px; }
.vhtesti-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--vh-primary-ultra);
  object-fit: cover;
}
.vhtesti-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--vh-text-dark) !important;
  margin: 0;
  display: block !important;
}
.vhtesti-role {
  font-size: 0.78rem;
  color: var(--vh-text-muted);
  margin: 0;
}

/* Swiper customization */
.swiper-pagination-bullet { background: var(--vh-primary); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; }

/* -------------------------------------------------------------
   11. PRICING CARDS
   ------------------------------------------------------------- */
.vhprice-card {
  background: #fff;
  border-radius: var(--vh-radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--vh-border);
  transition: var(--vh-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.vhprice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vh-shadow-xl);
  border-color: var(--vh-border-primary);
}
.vhprice-card.popular {
  border-color: var(--vh-primary);
  box-shadow: var(--vh-shadow-teal);
}
.vhprice-card.popular:hover { transform: translateY(-9px); }
.vhprice-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--vh-gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vhprice-type {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--vh-primary);
  font-weight: 700;
  margin-bottom: 6px;
}
.vhprice-name {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: var(--vh-text-dark) !important;
  margin-bottom: 12px;
  display: block !important;
}
.vhprice-amount {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: var(--vh-text-dark) !important;
  line-height: 1;
  display: inline !important;
}
.vhprice-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--vh-text-muted);
}
.vhprice-desc {
  color: var(--vh-text-body);
  font-size: 0.875rem;
  margin: 14px 0 20px;
  line-height: 1.6;
}
.vhprice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.vhprice-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--vh-text-body);
  border-bottom: 1px solid var(--vh-border-soft);
}
.vhprice-list li:last-child { border-bottom: none; }
.vhprice-list li i { color: var(--vh-primary); font-size: 0.78rem; flex-shrink: 0; }

/* Pricing page specific */
.vh-pricing-card { /* alias */ }
.vh-pricing-card .vh-pricing-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--vh-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* -------------------------------------------------------------
   12. FAQ ACCORDION
   ------------------------------------------------------------- */
.vhfaq-item {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: box-shadow 0.25s;
}
.vhfaq-item:hover { box-shadow: var(--vh-shadow-sm); }
.vhfaq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--vh-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vh-text-dark);
  transition: var(--vh-transition);
}
.vhfaq-btn:hover { color: var(--vh-primary); }
.vhfaq-btn[aria-expanded="true"] { color: var(--vh-primary); }
.vhfaq-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--vh-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--vh-text-muted);
  transition: var(--vh-transition);
}
.vhfaq-btn[aria-expanded="true"] .vhfaq-icon {
  background: var(--vh-primary-ultra);
  color: var(--vh-primary);
  transform: rotate(180deg);
}
.vhfaq-body { padding: 0 22px 18px; }
.vhfaq-body p {
  font-size: 0.9rem;
  color: var(--vh-text-body);
  line-height: 1.75;
  margin: 0;
}

/* -------------------------------------------------------------
   13. STATS STRIP
   ------------------------------------------------------------- */
.vhs-strip {
  background: #fff;
  border-radius: var(--vh-radius-lg);
  box-shadow: var(--vh-shadow-lg);
  padding: 32px 0;
  border: 1px solid var(--vh-border);
}
.vhs-item { text-align: center; padding: 0 20px; }
.vhs-num {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--vh-text-dark) !important;
  line-height: 1;
  display: block !important;
  letter-spacing: -1px;
}
.vhs-lbl {
  font-size: 0.85rem;
  color: var(--vh-text-body);
  margin-top: 6px;
  font-weight: 500;
}
.vhs-sep {
  width: 1px;
  height: 60px;
  background: var(--vh-border);
  align-self: center;
}

/* -------------------------------------------------------------
   14. LOGO MARQUEE
   ------------------------------------------------------------- */
.vhm {
  padding: 24px 0;
  background: var(--vh-bg-alt);
  border-top: 1px solid var(--vh-border);
  border-bottom: 1px solid var(--vh-border);
  overflow: hidden;
}
.vhm-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vh-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 18px;
}
.vhm-wrap { overflow: hidden; }
.vhm-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: vhMarquee 32s linear infinite;
}
.vhm-wrap:hover .vhm-track { animation-play-state: paused; }
@keyframes vhMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.vhm-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vh-text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--vh-border);
}
.vhm-chip i { font-size: 1.1rem; }

/* -------------------------------------------------------------
   15. FOOTER — Dark (Bordio style)
   ------------------------------------------------------------- */
.vh-footer {
  background: var(--vh-bg-dark);
  padding: 72px 0 0;
}
.vh-footer h5 {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px !important;
  display: block !important;
}
.vh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vh-footer ul li { margin-bottom: 10px; }
.vh-footer ul li a {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}
.vh-footer ul li a:hover { color: var(--vh-primary); text-decoration: none; }
.vh-footer p { color: rgba(255,255,255,.55); font-size: 0.9rem; line-height: 1.75; }
.vh-footer a { text-decoration: none; }

/* Footer social links */
.vh-footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.vh-footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7) !important;
  text-decoration: none !important;
  transition: var(--vh-transition);
  flex-shrink: 0;
}
.vh-footer-social-link:hover {
  background: var(--vh-primary) !important;
  border-color: var(--vh-primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  text-decoration: none !important;
}

/* Footer contact items */
.vh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
}
.vh-footer-contact-item i {
  color: var(--vh-primary);
  width: 16px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.vh-footer-contact-item a {
  color: rgba(255,255,255,.55);
  transition: color 0.2s;
}
.vh-footer-contact-item a:hover { color: var(--vh-primary); }

/* Newsletter */
.vh-newsletter-form { display: flex; gap: 8px; }
.vh-newsletter-form .form-control {
  flex: 1;
  border-radius: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 0.875rem;
  transition: border-color 0.25s;
}
.vh-newsletter-form .form-control::placeholder { color: rgba(255,255,255,.35); }
.vh-newsletter-form .form-control:focus {
  border-color: var(--vh-primary);
  box-shadow: none;
  background: rgba(255,255,255,.09);
  color: #fff;
  outline: none;
}
.vh-newsletter-form .vh-nl-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--vh-gradient);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--vh-transition);
  white-space: nowrap;
}
.vh-newsletter-form .vh-nl-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.vh-newsletter-form .vh-nl-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
#newsletter-success {
  display: none;
  font-size: 0.82rem;
  color: var(--vh-primary);
  margin-top: 8px;
}

/* Footer bottom bar */
.vh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  margin-top: 52px;
}
.vh-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.vh-footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,.4); margin: 0; }
.vh-footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.vh-footer-bottom-links a {
  color: rgba(255,255,255,.4);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.vh-footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* -------------------------------------------------------------
   16. HOME PAGE HERO (BORDIO STYLE — LIGHT)
   ------------------------------------------------------------- */
.vhh {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: #ffffff;
  overflow: hidden;
  padding: 72px 0 56px;
  position: relative;
}
.vhh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 40%, rgba(32,194,188,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 70%, rgba(32,194,188,.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero badge */
.vhh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vh-primary-ultra);
  border: 1px solid rgba(32,194,188,.25);
  color: var(--vh-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: vhFadeDown 0.5s ease 0.1s both;
}
@keyframes vhFadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@keyframes vhFadeUp   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Hero H1 */
.vhh-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--vh-text-dark) !important;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: vhFadeUp 0.6s ease 0.15s both;
  display: block !important;
}
.vhh-h1 .hl {
  background: var(--vh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vhh-sub {
  font-size: 1.1rem;
  color: var(--vh-text-body);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 32px;
  animation: vhFadeUp 0.6s ease 0.25s both;
}

.vhh-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: vhFadeUp 0.6s ease 0.35s both;
  margin-bottom: 28px;
}

.vhh-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: vhFadeUp 0.6s ease 0.45s both;
}
.vhh-trust span {
  color: var(--vh-text-muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.vhh-trust span i { color: var(--vh-primary); }

/* Hero visual (mockup card) */
.vhh-visual {
  position: relative;
  animation: vhFadeUp 0.8s ease 0.2s both;
}
.vhh-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--vh-shadow-xl), 0 0 0 1px var(--vh-border);
  border: 1px solid var(--vh-border);
}
.vhh-card-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--vh-border);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.vhh-dot { width: 10px; height: 10px; border-radius: 50%; }
.vhh-card-img { border-radius: 10px; overflow: hidden; }
.vhh-card-img img { width: 100%; display: block; }
.vhh-card-stats { display: flex; gap: 10px; margin-top: 14px; }
.vhh-card-stat {
  flex: 1;
  background: var(--vh-bg-alt);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid var(--vh-border);
}
.vhh-card-stat .num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--vh-text-dark);
  display: block !important;
}
.vhh-card-stat .lbl {
  font-size: 0.7rem;
  color: var(--vh-text-muted);
  margin-top: 2px;
}

/* Floating stat badges on hero image */
.vhh-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--vh-shadow-lg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vh-text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.vhh-float-badge .badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--vh-primary-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--vh-primary);
}

/* -------------------------------------------------------------
   17. CTA SECTION
   ------------------------------------------------------------- */
.vh-cta-section {
  background: var(--vh-gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vh-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.vh-cta-section h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.75rem) !important;
  font-weight: 800 !important;
  /* override the gradient — solid white on teal bg */
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
  display: block !important;
}
.vh-cta-section h2::after { display: none !important; }
.vh-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* -------------------------------------------------------------
   18. LEAD CAPTURE FORM SECTION
   ------------------------------------------------------------- */
.vh-lead-section {
  background: var(--vh-bg-alt);
  padding: 88px 0;
  border-top: 1px solid var(--vh-border);
}
.vh-lead-form input, .vh-lead-form textarea, .vh-lead-form select {
  background: #fff;
  border: 1px solid var(--vh-border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.92rem;
  color: var(--vh-text-dark);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--vh-font-body);
}
.vh-lead-form input:focus, .vh-lead-form textarea:focus {
  border-color: var(--vh-primary);
  box-shadow: 0 0 0 3px rgba(32,194,188,.1);
  outline: none;
}
.vh-lead-form textarea { resize: vertical; min-height: 120px; }

/* Trust point (checkmark list) */
.vh-trust-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--vh-text-body);
}
.vh-trust-point .tp-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vh-primary-ultra);
  border: 1px solid rgba(32,194,188,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--vh-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* -------------------------------------------------------------
   19. CONTACT PAGE
   ------------------------------------------------------------- */
.vh-contact-card {
  background: #fff;
  border-radius: var(--vh-radius);
  padding: 28px 24px;
  border: 1px solid var(--vh-border);
  text-align: center;
  transition: var(--vh-transition);
}
.vh-contact-card:hover { box-shadow: var(--vh-shadow-lg); transform: translateY(-4px); border-color: var(--vh-border-primary); }
.vh-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--vh-primary-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--vh-primary);
  margin: 0 auto 16px;
}
.vh-contact-card h6 {
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: var(--vh-text-dark) !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.vh-contact-card p { font-size: 0.875rem; color: var(--vh-text-body); margin: 0; }

/* Contact form */
.vh-contact-form-wrap {
  background: #fff;
  border-radius: var(--vh-radius-lg);
  padding: 40px;
  border: 1px solid var(--vh-border);
  box-shadow: var(--vh-shadow-md);
}
.vh-contact-form-wrap .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vh-text-dark);
  margin-bottom: 6px;
}
.vh-contact-form-wrap .form-control {
  border: 1px solid var(--vh-border);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.9rem;
  color: var(--vh-text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vh-contact-form-wrap .form-control:focus {
  border-color: var(--vh-primary);
  box-shadow: 0 0 0 3px rgba(32,194,188,.1);
  outline: none;
}

/* -------------------------------------------------------------
   20. FEATURES PAGE SPECIFIC
   ------------------------------------------------------------- */
.vh-features-tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.vh-ftab {
  padding: 8px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid var(--vh-border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vh-text-body);
  cursor: pointer;
  transition: var(--vh-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vh-ftab:hover, .vh-ftab.active {
  background: var(--vh-primary);
  border-color: var(--vh-primary);
  color: #fff !important;
  text-decoration: none;
}

/* Stats strip for features page */
.vh-feature-stat { text-align: center; padding: 20px; }
.vh-feature-stat .num {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--vh-text-dark) !important;
  display: block !important;
  line-height: 1;
  letter-spacing: -1px;
}
.vh-feature-stat .lbl {
  font-size: 0.82rem;
  color: var(--vh-text-body);
  margin-top: 6px;
  font-weight: 500;
}

/* Screenshot gallery */
.vh-screenshot-mosaic {}
.vh-screenshot-mosaic img {
  border-radius: var(--vh-radius);
  border: 1px solid var(--vh-border);
  box-shadow: var(--vh-shadow-md);
  transition: var(--vh-transition);
}
.vh-screenshot-mosaic img:hover { transform: scale(1.02); box-shadow: var(--vh-shadow-xl); }

/* -------------------------------------------------------------
   21. PLANS PAGE SPECIFIC
   ------------------------------------------------------------- */
.vh-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
}
.vh-billing-toggle .vh-toggle-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vh-text-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.vh-billing-toggle .vh-toggle-label.active { color: var(--vh-text-dark); }
.vh-billing-toggle .vh-toggle-switch {
  width: 56px;
  height: 28px;
  background: var(--vh-border);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s;
}
.vh-billing-toggle .vh-toggle-switch.active { background: var(--vh-primary); }
.vh-billing-toggle .vh-toggle-switch::after {
  content: '';
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.25s;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.vh-billing-toggle .vh-toggle-switch.active::after { left: 31px; }
.vh-save-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(249,115,22,.1);
  color: #d9520a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid rgba(249,115,22,.2);
}

/* Trust strip */
.vh-trust-strip { background: var(--vh-bg-alt); padding: 40px 0; border-top: 1px solid var(--vh-border); border-bottom: 1px solid var(--vh-border); }
.vh-trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.vh-trust-item i { font-size: 1.5rem; color: var(--vh-primary); }
.vh-trust-item span { font-size: 0.875rem; font-weight: 600; color: var(--vh-text-dark); }

/* Comparison table */
.vh-compare-table { width: 100%; border-collapse: collapse; }
.vh-compare-table th, .vh-compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--vh-border); text-align: left; }
.vh-compare-table th { font-size: 0.82rem; font-weight: 700; color: var(--vh-text-muted); text-transform: uppercase; letter-spacing: 0.5px; background: var(--vh-bg-alt); }
.vh-compare-table td { font-size: 0.9rem; color: var(--vh-text-body); }
.vh-compare-table tr:last-child td { border-bottom: none; }
.vh-compare-table .check { color: var(--vh-primary); font-size: 1rem; }
.vh-compare-table .cross { color: var(--vh-text-muted); }

/* Pricing eyebrow */
.vh-pricing-eyebrow {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 50px;
  background: var(--vh-primary-ultra);
  color: var(--vh-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

/* -------------------------------------------------------------
   22. SCROLL ANIMATIONS
   ------------------------------------------------------------- */
.vh-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vh-fade-in.visible {
  opacity: 1;
  transform: none;
}
.vh-fade-in-delay-1 { transition-delay: 0.1s; }
.vh-fade-in-delay-2 { transition-delay: 0.2s; }
.vh-fade-in-delay-3 { transition-delay: 0.3s; }

/* -------------------------------------------------------------
   23. RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 991px) {
  .vh-section, .vh-sec { padding: 64px 0; }
  .vh-sec-lg { padding: 80px 0; }
  .vhh { padding: 48px 0; min-height: auto; }
  .vhh-h1 { font-size: 2.2rem !important; }
  .vh-section-title h2, .vh-stitle h2 { font-size: 1.5rem !important; }
  .vh-cta-section h2 { font-size: 2rem !important; }
  .vhshow-h3 { font-size: 1.5rem !important; }
  .vhs-strip { padding: 20px 0; }
  .vhs-sep { display: none; }
  .vhs-item { padding: 12px 16px; border-bottom: 1px solid var(--vh-border); }
  .vhs-item:last-child { border-bottom: none; }
  .vh-contact-form-wrap { padding: 28px 20px; }
  .vhstep-line { display: none; }
  .vh-footer { padding: 56px 0 0; }
}

@media (max-width: 767px) {
  .vh-section, .vh-sec { padding: 48px 0; }
  .vhh { padding: 32px 0; }
  .vhh-h1 { font-size: 1.85rem !important; letter-spacing: -0.5px; }
  .vh-section-title h2, .vh-stitle h2 { font-size: 1.4rem !important; }
  .vh-cta-section h2 { font-size: 1.75rem !important; }
  .vhh-cta { flex-direction: column; gap: 10px; }
  .vhh-cta .vh-btn, .vhh-cta .vhbtn { width: 100%; justify-content: center; }
  .vh-newsletter-form { flex-direction: column; }
  .vh-footer-bottom-inner { flex-direction: column; text-align: center; }
  .vh-footer-bottom-links { justify-content: center; }
  .vhprice-card { padding: 24px 20px; }
  .vh-billing-toggle { flex-wrap: wrap; gap: 10px; }
  .vh-features-tab-bar { gap: 6px; }
  .vh-ftab { padding: 6px 14px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .vhh-h1 { font-size: 1.65rem !important; }
  .vh-section-title h2, .vh-stitle h2 { font-size: 1.2rem !important; }
  .vh-cta-section h2 { font-size: 1.55rem !important; }
  .vhf-card { padding: 22px 18px; }
  .vhprice-card { padding: 20px 16px; }
  .vhprice-amount { font-size: 2rem !important; }
}

/* -------------------------------------------------------------
   24. MISC UTILITIES
   ------------------------------------------------------------- */
.vh-divider { border: none; border-top: 1px solid var(--vh-border); margin: 0; }
.vh-badge-teal { background: var(--vh-primary-ultra); color: var(--vh-primary); border: 1px solid rgba(32,194,188,.2); border-radius: 50px; padding: 3px 12px; font-size: 0.75rem; font-weight: 700; }
.vh-badge-orange { background: var(--vh-accent-light); color: var(--vh-accent); border: 1px solid rgba(249,115,22,.2); border-radius: 50px; padding: 3px 12px; font-size: 0.75rem; font-weight: 700; }
.text-teal { color: var(--vh-primary) !important; }
.text-dark-navy { color: var(--vh-text-dark) !important; }
.bg-teal { background: var(--vh-primary) !important; }
.fw-800 { font-weight: 800 !important; }
.ls-tight { letter-spacing: -0.5px; }
.rounded-14 { border-radius: 14px !important; }
.rounded-20 { border-radius: 20px !important; }
