/* =======================================================
   Veldric Asset Management — Shared Public Pages CSS
   Accent: #6BF4FB  |  Navy: #0B1D3A  |  Mid: #163563
======================================================= */

:root {
  --vh-cyan:       #6BF4FB;
  --vh-cyan-light: #4DE8F0;
  --vh-navy:       #0B1D3A;
  --vh-navy-mid:   #163563;
  --vh-navy-light: #1e3a6e;
  --vh-white:      #ffffff;
  --vh-off:        #F7F9FC;
  --vh-border:     rgba(107,244,251,.18);
  --vh-text:       #374151;
  --vh-muted:      #6B7280;
  --vh-shadow:     0 20px 60px rgba(11,29,58,.14);
  --vh-transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ─── PAGE HERO ─────────────────────────────────────── */
.vh-page-hero {
  background: linear-gradient(135deg, var(--vh-navy) 0%, #0D2244 100%);
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}
.vh-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(107,244,251,.10) 0%, transparent 55%),
              radial-gradient(circle at 80% 50%, rgba(107,244,251,.06) 0%, transparent 50%);
  z-index: 0;
}
.vh-page-hero__bg-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .07;
}
.vh-page-hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
}
.vh-page-hero__inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.vh-page-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 30px;
  background: rgba(107,244,251,.12); border: 1px solid rgba(107,244,251,.28);
  color: var(--vh-cyan); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 22px;
}
.vh-page-hero__badge i { font-size: 10px; }
.vh-page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--vh-white); line-height: 1.15;
  margin-bottom: 22px; letter-spacing: -1px;
}
.vh-page-hero__title span { color: var(--vh-cyan); }
.vh-page-hero__desc {
  font-size: 17px; line-height: 1.8;
  color: rgba(255,255,255,.75); max-width: 680px; margin: 0 auto 36px;
}
.vh-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; list-style: none; padding: 0; margin: 0;
  font-size: 13px; color: rgba(255,255,255,.50);
}
.vh-breadcrumb a { color: var(--vh-cyan); text-decoration: none; }
.vh-breadcrumb li:not(:last-child)::after {
  content: '/'; margin-left: 10px; color: rgba(255,255,255,.30);
}

/* Floating stat pills */
.vh-hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 44px;
}
.vh-hero-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 32px; background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; min-width: 130px;
  transition: var(--vh-transition);
}
.vh-hero-stat:hover { background: rgba(107,244,251,.1); border-color: rgba(107,244,251,.3); transform: translateY(-4px); }
.vh-hero-stat__num {
  font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700;
  color: var(--vh-cyan); line-height: 1;
}
.vh-hero-stat__label {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.60); margin-top: 6px;
}

/* Animated particles */
.vh-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.vh-particle {
  position: absolute; width: 2px; height: 2px;
  background: rgba(107,244,251,.4); border-radius: 50%;
  animation: vhParticleDrift linear infinite;
}
@keyframes vhParticleDrift {
  0%   { transform: translateY(100%) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-120%) scale(1); opacity: 0; }
}

/* ─── SHARED SECTION CHROME ─────────────────────────── */
.vh-section { padding: 100px 0; }
.vh-section--light { background: var(--vh-white); }
.vh-section--off   { background: var(--vh-off); }
.vh-section--dark  {
  background: linear-gradient(135deg, var(--vh-navy) 0%, var(--vh-navy-mid) 100%);
}
.vh-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.vh-container--sm { max-width: 900px; }

.vh-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--vh-cyan); margin-bottom: 14px;
}
.vh-section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--vh-cyan); border-radius: 2px;
}
.vh-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--vh-navy); line-height: 1.2; margin-bottom: 18px;
  letter-spacing: -.5px;
}
.vh-section-title--white { color: var(--vh-white); }
.vh-section-desc {
  font-size: 16px; line-height: 1.8; color: var(--vh-muted); max-width: 640px;
}
.vh-section-desc--white { color: rgba(255,255,255,.72); }
.vh-section-header { margin-bottom: 60px; }
.vh-section-header--center { text-align: center; }
.vh-section-header--center .vh-section-label { justify-content: center; }
.vh-section-header--center .vh-section-desc { margin: 0 auto; }

/* ─── FEATURE CARDS ──────────────────────────────────── */
.vh-card {
  background: var(--vh-white); border-radius: 20px;
  border: 1px solid rgba(11,29,58,.08); padding: 40px 36px;
  transition: var(--vh-transition); position: relative; overflow: hidden;
}
.vh-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--vh-cyan);
  border-radius: 0 0 4px 0; transition: height .4s ease;
}
.vh-card:hover::before { height: 100%; }
.vh-card:hover { box-shadow: var(--vh-shadow); transform: translateY(-8px); }
.vh-card__icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: rgba(107,244,251,.1); border: 1px solid rgba(107,244,251,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--vh-cyan); margin-bottom: 24px;
  transition: var(--vh-transition);
}
.vh-card:hover .vh-card__icon {
  background: var(--vh-cyan); color: var(--vh-navy); border-color: var(--vh-cyan);
}
.vh-card__title {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600;
  color: var(--vh-navy); margin-bottom: 12px;
}
.vh-card__text { font-size: 14px; line-height: 1.75; color: var(--vh-muted); margin: 0; }

/* Dark card variant */
.vh-card--dark {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1);
}
.vh-card--dark:hover { background: rgba(107,244,251,.08); border-color: rgba(107,244,251,.3); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.vh-card--dark .vh-card__title { color: var(--vh-white); }
.vh-card--dark .vh-card__text  { color: rgba(255,255,255,.68); }

/* ─── SECTOR / SERVICE GRID ──────────────────────────── */
.vh-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.vh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vh-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ─── TWO-COL SPLIT ──────────────────────────────────── */
.vh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.vh-split--reverse .vh-split__visual { order: -1; }

.vh-split__visual { position: relative; }
.vh-split__img-wrap {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  animation: vhFloat 7s ease-in-out infinite;
  border: 2px solid rgba(107,244,251,.22);
}
.vh-split__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes vhFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

/* Floating badge on split visual */
.vh-split__badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--vh-cyan); color: var(--vh-navy);
  border-radius: 18px; padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(107,244,251,.4);
  font-size: 12px; font-weight: 700; text-align: center; line-height: 1.3;
  animation: vhPulse 3s ease-in-out infinite;
  z-index: 2;
}
.vh-split__badge strong { display: block; font-size: 28px; font-weight: 900; }
@keyframes vhPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(107,244,251,.4); }
  50%       { box-shadow: 0 12px 60px rgba(107,244,251,.65); }
}

/* ─── PROCESS STEPS ─────────────────────────────────── */
.vh-steps { counter-reset: step; }
.vh-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(11,29,58,.07);
  counter-increment: step;
  position: relative;
}
.vh-step:last-child { border-bottom: none; }
.vh-step__num {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  background: rgba(107,244,251,.1); border: 1px solid rgba(107,244,251,.28);
  color: var(--vh-cyan); font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--vh-transition);
}
.vh-step:hover .vh-step__num {
  background: var(--vh-cyan); color: var(--vh-navy);
}
.vh-step__body h4 {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  color: var(--vh-navy); margin-bottom: 8px;
}
.vh-step__body p { font-size: 14px; line-height: 1.75; color: var(--vh-muted); margin: 0; }

/* ─── STAT COUNTER ROW ───────────────────────────────── */
.vh-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(11,29,58,.1);
  border-radius: 20px; overflow: hidden;
}
.vh-stat-cell {
  background: var(--vh-white); padding: 40px 30px; text-align: center;
}
.vh-stat-cell--dark { background: rgba(255,255,255,.05); }
.vh-stat-num {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: var(--vh-cyan); line-height: 1;
}
.vh-stat-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--vh-muted); margin-top: 8px; display: block;
}
.vh-stat-cell--dark .vh-stat-label { color: rgba(255,255,255,.55); }

/* ─── ACCORDION / FAQ ────────────────────────────────── */
.vh-accordion { display: flex; flex-direction: column; gap: 12px; }
.vh-accordion-item {
  border: 1px solid rgba(11,29,58,.1); border-radius: 14px;
  overflow: hidden; transition: var(--vh-transition);
}
.vh-accordion-item.is-open { box-shadow: 0 8px 30px rgba(11,29,58,.08); }
.vh-accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; background: none; border: none; cursor: pointer; gap: 16px;
  text-align: left;
}
.vh-accordion-trigger h4 {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
  color: var(--vh-navy); margin: 0; flex: 1;
}
.vh-accordion-arrow {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: rgba(107,244,251,.1); border: 1px solid rgba(107,244,251,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--vh-cyan); font-size: 13px;
  transition: transform .3s ease, background .3s ease;
}
.vh-accordion-item.is-open .vh-accordion-arrow {
  transform: rotate(180deg); background: var(--vh-cyan); color: var(--vh-navy);
}
.vh-accordion-body {
  padding: 0 28px 22px; font-size: 15px; line-height: 1.8; color: var(--vh-muted);
  display: none;
}
.vh-accordion-item.is-open .vh-accordion-body { display: block; }

/* ─── PLAN / PRICING CARDS ───────────────────────────── */
.vh-plan {
  border-radius: 24px; padding: 44px 36px;
  border: 2px solid transparent;
  background: var(--vh-white);
  transition: var(--vh-transition); position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(11,29,58,.06);
}
.vh-plan--featured {
  background: linear-gradient(145deg, var(--vh-navy) 0%, var(--vh-navy-mid) 100%);
  border-color: var(--vh-cyan);
  box-shadow: 0 20px 60px rgba(107,244,251,.25);
  transform: scale(1.03);
}
.vh-plan:hover:not(.vh-plan--featured) {
  border-color: rgba(107,244,251,.45); box-shadow: var(--vh-shadow);
  transform: translateY(-6px);
}
.vh-plan__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--vh-cyan); color: var(--vh-navy);
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.vh-plan__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--vh-cyan); margin-bottom: 10px;
}
.vh-plan__name {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700;
  color: var(--vh-navy); margin-bottom: 20px;
}
.vh-plan--featured .vh-plan__name { color: var(--vh-white); }
.vh-plan__roi {
  font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700;
  color: var(--vh-cyan); line-height: 1; margin-bottom: 6px;
}
.vh-plan__roi-sub { font-size: 13px; color: var(--vh-muted); margin-bottom: 30px; }
.vh-plan--featured .vh-plan__roi-sub { color: rgba(255,255,255,.60); }
.vh-plan__divider {
  height: 1px; background: rgba(11,29,58,.08); margin: 24px 0;
}
.vh-plan--featured .vh-plan__divider { background: rgba(255,255,255,.12); }
.vh-plan__features { list-style: none; padding: 0; margin: 0 0 32px; }
.vh-plan__features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--vh-text); margin-bottom: 12px;
}
.vh-plan--featured .vh-plan__features li { color: rgba(255,255,255,.82); }
.vh-plan__features li i { color: var(--vh-cyan); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.vh-plan__cta {
  display: block; width: 100%; padding: 15px 24px; text-align: center;
  background: var(--vh-cyan); color: var(--vh-navy);
  font-weight: 700; font-size: 14px; border-radius: 12px;
  text-decoration: none; border: 2px solid transparent;
  transition: var(--vh-transition);
}
.vh-plan__cta:hover { background: transparent; border-color: var(--vh-cyan); color: var(--vh-cyan); }
.vh-plan--featured .vh-plan__cta:hover { color: var(--vh-cyan); }

/* ─── AUTH PAGES ─────────────────────────────────────── */
.vh-auth-wrap {
  min-height: 100vh; display: flex; align-items: stretch;
  background: var(--vh-off);
}
.vh-auth-left {
  flex: 0 0 50%; background: linear-gradient(145deg, var(--vh-navy) 0%, var(--vh-navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
}
.vh-auth-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(107,244,251,.12) 0%, transparent 55%),
              radial-gradient(circle at 75% 80%, rgba(107,244,251,.06) 0%, transparent 50%);
  z-index: 0;
}
.vh-auth-left__content { position: relative; z-index: 1; max-width: 480px; }
.vh-auth-left__logo { margin-bottom: 48px; }
.vh-auth-left__logo img { height: 38px; }
.vh-auth-left__heading {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700;
  color: var(--vh-white); line-height: 1.2; margin-bottom: 18px;
}
.vh-auth-left__heading span { color: var(--vh-cyan); }
.vh-auth-left__sub { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.72); margin-bottom: 40px; }
.vh-auth-features { display: flex; flex-direction: column; gap: 20px; }
.vh-auth-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.vh-auth-feature__icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(107,244,251,.12); border: 1px solid rgba(107,244,251,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--vh-cyan);
}
.vh-auth-feature__title { font-size: 14px; font-weight: 700; color: var(--vh-white); margin-bottom: 4px; }
.vh-auth-feature__desc  { font-size: 13px; color: rgba(255,255,255,.60); line-height: 1.6; }

.vh-auth-right {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 48px 60px;
}
.vh-auth-form-wrap { width: 100%; max-width: 440px; }
.vh-auth-form-wrap h2 {
  font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700;
  color: var(--vh-navy); margin-bottom: 8px;
}
.vh-auth-form-wrap > p { font-size: 14px; color: var(--vh-muted); margin-bottom: 32px; }
.vh-form-group { margin-bottom: 20px; }
.vh-form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--vh-navy); margin-bottom: 8px;
}
.vh-form-control {
  display: block; width: 100%; padding: 13px 16px;
  background: var(--vh-white); border: 1.5px solid rgba(11,29,58,.15);
  border-radius: 10px; font-size: 14px; color: var(--vh-navy);
  transition: var(--vh-transition); outline: none;
  box-sizing: border-box;
}
.vh-form-control:focus {
  border-color: var(--vh-cyan); box-shadow: 0 0 0 3px rgba(107,244,251,.15);
}
.vh-form-control--icon { padding-left: 42px; }
.vh-input-group { position: relative; }
.vh-input-group i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--vh-muted); font-size: 14px; pointer-events: none;
}
.vh-input-group .vh-toggle-pass {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--vh-muted); font-size: 14px; cursor: pointer; pointer-events: all;
}
.vh-form-btn {
  display: block; width: 100%; padding: 15px 24px; text-align: center;
  background: var(--vh-navy); color: var(--vh-white);
  font-weight: 700; font-size: 15px; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--vh-transition); margin-top: 8px;
}
.vh-form-btn:hover {
  background: var(--vh-cyan); color: var(--vh-navy);
}
.vh-form-footer {
  text-align: center; margin-top: 24px; font-size: 13px; color: var(--vh-muted);
}
.vh-form-footer a { color: var(--vh-cyan); font-weight: 600; text-decoration: none; }
.vh-form-divider {
  display: flex; align-items: center; gap: 12px; margin: 24px 0;
  font-size: 12px; color: var(--vh-muted);
}
.vh-form-divider::before, .vh-form-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(11,29,58,.1);
}

/* ─── CTA BAND ───────────────────────────────────────── */
.vh-cta-band {
  background: linear-gradient(135deg, var(--vh-navy) 0%, var(--vh-navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.vh-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(107,244,251,.1) 0%, transparent 60%);
  z-index: 0;
}
.vh-cta-band__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.vh-cta-band h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: var(--vh-white); margin-bottom: 16px;
}
.vh-cta-band p { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 36px; line-height: 1.75; }
.vh-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--vh-cyan); color: var(--vh-navy);
  font-weight: 700; font-size: 15px; border-radius: 99px;
  text-decoration: none; border: 2px solid transparent;
  transition: var(--vh-transition); box-shadow: 0 8px 30px rgba(107,244,251,.35);
}
.vh-cta-btn:hover {
  background: transparent; border-color: var(--vh-cyan); color: var(--vh-cyan);
  transform: translateY(-3px); box-shadow: 0 14px 40px rgba(107,244,251,.25);
}
.vh-cta-btn i { font-size: 12px; transition: transform .3s ease; }
.vh-cta-btn:hover i { transform: translateX(4px); }

/* ─── SECTOR HERO SPLIT ─────────────────────────────── */
.vh-sector-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 2;
}

/* ─── CONTACT ─────────────────────────────────────────── */
.vh-contact-card {
  background: var(--vh-white); border-radius: 20px;
  padding: 36px; border: 1px solid rgba(11,29,58,.08);
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--vh-transition);
}
.vh-contact-card:hover { box-shadow: var(--vh-shadow); transform: translateY(-4px); }
.vh-contact-card__icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  background: rgba(107,244,251,.1); border: 1px solid rgba(107,244,251,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--vh-cyan);
}
.vh-contact-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--vh-cyan); margin-bottom: 6px; }
.vh-contact-card__val   { font-size: 16px; font-weight: 600; color: var(--vh-navy); }
.vh-contact-card__sub   { font-size: 13px; color: var(--vh-muted); margin-top: 4px; line-height: 1.5; }

/* Form inside sections */
.vh-form-section { background: var(--vh-white); border-radius: 24px; padding: 50px; box-shadow: var(--vh-shadow); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .vh-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .vh-section { padding: 72px 0; }
  .vh-split, .vh-sector-split { grid-template-columns: 1fr; gap: 48px; }
  .vh-split--reverse .vh-split__visual { order: 0; }
  .vh-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .vh-stats-row { grid-template-columns: repeat(2, 1fr); }
  .vh-auth-left { display: none; }
  .vh-auth-right { padding: 40px 24px; }
  .vh-plan--featured { transform: none; }
}
@media (max-width: 767px) {
  .vh-page-hero { padding: 140px 0 72px; }
  .vh-grid-2, .vh-grid-3 { grid-template-columns: 1fr; }
  .vh-stats-row { grid-template-columns: repeat(2, 1fr); }
  .vh-hero-stats { gap: 12px; }
  .vh-hero-stat { padding: 16px 24px; min-width: 110px; }
  .vh-form-section { padding: 32px 24px; }
}
@media (max-width: 575px) {
  .vh-stats-row { grid-template-columns: 1fr 1fr; }
  .vh-auth-form-wrap { max-width: 100%; }
}

/* ─── UTILITY ─────────────────────────────────────────── */
.vh-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.vh-reveal.is-visible { opacity: 1; transform: none; }
.vh-reveal-delay-1 { transition-delay: .1s; }
.vh-reveal-delay-2 { transition-delay: .2s; }
.vh-reveal-delay-3 { transition-delay: .3s; }
.vh-reveal-delay-4 { transition-delay: .4s; }

.vh-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  background: rgba(107,244,251,.1); color: var(--vh-cyan); border: 1px solid rgba(107,244,251,.22);
}

/* Shared animation keyframes used across sector/split pages */
@keyframes vhFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes vhPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(107,244,251,.4); }
  50%       { box-shadow: 0 12px 60px rgba(107,244,251,.65); }
}
