/* ─── VL LANDING PAGE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-50: #f7f7f7;
  --gray-100: #efefef;
  --gray-200: #e0e0e0;
  --gray-400: #a0a0a0;
  --gray-600: #555555;
  --gray-800: #2a2a2a;
  --accent: #006aff;
  --accent-light: #e8f0ff;
  --green: #1a9e5d;
  --green-light: #e6f7ef;
  --orange: #f06a00;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body.vl-landing-page {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ─── NAV ─── */
.vl-landing header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.vl-landing nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.vl-landing .nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}
.vl-landing .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.vl-landing .nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.15s;
}
.vl-landing .nav-links a:hover { color: var(--black); }
.vl-landing .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.vl-landing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.vl-landing .btn-ghost {
  background: transparent;
  color: var(--gray-600);
  padding: 9px 16px;
}
.vl-landing .btn-ghost:hover { color: var(--black); background: var(--gray-100); }
.vl-landing .nav-avatar-btn { display: flex; align-items: center; gap: 8px; }
.vl-landing .nav-avatar { width: 28px; height: 28px; border-radius: 50%; background: #a78bfa; color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vl-landing .btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
}
.vl-landing .btn-primary:hover { background: var(--gray-800); }
.vl-landing .btn-primary-lg {
  background: var(--black);
  color: var(--white);
  padding: 16px 32px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}
.vl-landing .btn-primary-lg:hover { background: var(--gray-800); }
.vl-landing .btn-outline-lg {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-200);
  padding: 15px 32px;
  font-size: 15px;
  border-radius: var(--radius-sm);
}
.vl-landing .btn-outline-lg:hover { border-color: var(--black); background: var(--gray-50); }

/* ─── HERO ─── */
.vl-landing .hero {
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}
.vl-landing .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 24px;
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 100px;
}
.vl-landing .hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: vl-pulse 2s infinite;
}
@keyframes vl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.vl-landing .hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 24px;
}
.vl-landing .hero h1 em { font-style: italic; color: var(--gray-600); }
.vl-landing .hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.vl-landing .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.vl-landing .hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
}
.vl-landing .hero-trust-avatars { display: flex; }
.vl-landing .hero-trust-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.vl-landing .av1 { background: #4F46E5; }
.vl-landing .av2 { background: #0891B2; }
.vl-landing .av3 { background: #059669; }
.vl-landing .av4 { background: #D97706; }

.vl-landing .hero-visual { position: relative; }
.vl-landing .hero-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}
.vl-landing .hero-card-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vl-landing .hero-card-bar-dot { width: 10px; height: 10px; border-radius: 50%; }
.vl-landing .d1 { background: #FF5F57; }
.vl-landing .d2 { background: #FEBC2E; }
.vl-landing .d3 { background: #28C840; }
.vl-landing .hero-card-title { font-size: 12px; font-weight: 600; color: var(--gray-400); margin-left: 8px; }
.vl-landing .dashboard-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vl-landing .dash-stat {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 18px;
}
.vl-landing .dash-stat-label {
  font-size: 11px; font-weight: 600; color: var(--gray-400);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px;
}
.vl-landing .dash-stat-value {
  font-size: 26px; font-weight: 700; color: var(--black);
  letter-spacing: -1px; margin-bottom: 4px;
}
.vl-landing .dash-stat-change { font-size: 12px; font-weight: 600; color: var(--green); }
.vl-landing .dash-chart {
  grid-column: span 2;
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.vl-landing .dash-chart-label {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px;
}
.vl-landing .dash-chart-value {
  font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -1px;
}
.vl-landing .mini-chart {
  margin-top: 16px; height: 60px;
  display: flex; align-items: flex-end; gap: 4px;
}
.vl-landing .bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 3px 3px 0 0;
  transition: background 0.2s;
}
.vl-landing .bar.active { background: rgba(255,255,255,0.85); }
.vl-landing .dash-loyalty {
  grid-column: span 2;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vl-landing .dash-loyalty-left { display: flex; align-items: center; gap: 12px; }
.vl-landing .loyalty-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.vl-landing .loyalty-icon svg { width: 18px; height: 18px; color: white; fill: white; }
.vl-landing .dash-loyalty-name { font-size: 13px; font-weight: 700; color: var(--black); }
.vl-landing .dash-loyalty-sub { font-size: 11px; color: var(--gray-600); }
.vl-landing .dash-loyalty-pts { font-size: 18px; font-weight: 700; color: var(--accent); }

.vl-landing .hero-float-badge {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-size: 13px; font-weight: 600;
}
.vl-landing .badge-icon {
  width: 32px; height: 32px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.vl-landing .hero-float-badge2 {
  position: absolute; top: 20px; right: -20px;
  background: var(--black); border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  font-size: 13px; font-weight: 600; color: var(--white);
}

/* ─── LOGOS ─── */
.vl-landing .logos-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 28px 32px;
}
.vl-landing .logos-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.vl-landing .logos-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray-400); white-space: nowrap;
}
.vl-landing .logos-list { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.vl-landing .logo-item {
  font-size: 15px; font-weight: 700; color: var(--gray-400);
  letter-spacing: -0.5px; opacity: 0.6;
}

/* ─── SECTIONS ─── */
.vl-landing .section { padding: 100px 32px; }
.vl-landing .section-inner { max-width: 1200px; margin: 0 auto; }
.vl-landing .section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px;
}
.vl-landing .section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.1; letter-spacing: -1px;
  color: var(--black); margin-bottom: 16px;
}
.vl-landing .section-title em { font-style: italic; color: var(--gray-600); }
.vl-landing .section-sub {
  font-size: 17px; color: var(--gray-600); line-height: 1.7; max-width: 560px;
}

/* ─── PLATFORM CARDS ─── */
.vl-landing .platform-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
}
.vl-landing .platform-card {
  background: var(--white); padding: 40px; transition: background 0.2s;
}
.vl-landing .platform-card:hover { background: var(--gray-50); }
.vl-landing .platform-icon {
  width: 48px; height: 48px; background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.vl-landing .platform-card h3 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px;
}
.vl-landing .platform-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.vl-landing .platform-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--black);
  text-decoration: none; margin-top: 20px; transition: gap 0.15s;
}
.vl-landing .platform-card-link:hover { gap: 10px; }

/* ─── FEATURES DARK ─── */
.vl-landing .features-dark {
  background: var(--black); border-radius: var(--radius-xl);
  padding: 80px; margin: 0 32px;
}
.vl-landing .features-dark .section-label { color: rgba(255,255,255,0.4); }
.vl-landing .features-dark .section-title { color: var(--white); }
.vl-landing .features-dark .section-sub { color: rgba(255,255,255,0.5); }
.vl-landing .features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); overflow: hidden;
}
.vl-landing .feature-item {
  padding: 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.vl-landing .feature-item:hover { background: rgba(255,255,255,0.03); }
.vl-landing .feature-item:nth-child(3n) { border-right: none; }
.vl-landing .feature-item:nth-child(n+4) { border-bottom: none; }
.vl-landing .feature-icon { width: 40px; height: 40px; margin-bottom: 20px; opacity: 0.6; }
.vl-landing .feature-item h3 {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.vl-landing .feature-item p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.vl-landing .steps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.vl-landing .step {
  display: flex; gap: 20px; padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: all 0.2s;
}
.vl-landing .step:last-child { border-bottom: none; }
.vl-landing .step-num {
  font-size: 13px; font-weight: 700; color: var(--gray-400);
  width: 24px; flex-shrink: 0; padding-top: 2px;
}
.vl-landing .step-content h4 {
  font-size: 17px; font-weight: 700; color: var(--black);
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.vl-landing .step-content p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.vl-landing .step.active .step-num { color: var(--black); }
.vl-landing .step.active { padding-left: 12px; border-left: 3px solid var(--black); }
.vl-landing .steps-visual {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 40px; min-height: 420px;
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
}
.vl-landing .step-row {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; transition: all 0.3s;
}
.vl-landing .step-row-icon {
  width: 36px; height: 36px; background: var(--black); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vl-landing .step-row-icon svg { width: 16px; height: 16px; fill: white; }
.vl-landing .step-row-text { font-size: 14px; font-weight: 600; color: var(--black); }
.vl-landing .step-row-sub { font-size: 12px; color: var(--gray-400); }
.vl-landing .step-row-check {
  margin-left: auto; width: 20px; height: 20px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vl-landing .step-row-check svg { width: 10px; height: 10px; fill: white; }

/* ─── LOYALTY ─── */
.vl-landing .loyalty-section { background: var(--gray-50); }
.vl-landing .loyalty-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.vl-landing .loyalty-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.vl-landing .loyalty-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.vl-landing .loyalty-brand { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; }
.vl-landing .loyalty-tag {
  font-size: 11px; font-weight: 700; background: var(--accent-light);
  color: var(--accent); padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.vl-landing .loyalty-points {
  font-size: 48px; font-weight: 700; letter-spacing: -2px;
  color: var(--black); margin-bottom: 4px;
}
.vl-landing .loyalty-points-label { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
.vl-landing .loyalty-progress-bar {
  height: 8px; background: var(--gray-100); border-radius: 100px;
  margin-bottom: 8px; overflow: hidden;
}
.vl-landing .loyalty-progress-fill {
  height: 100%; width: 68%;
  background: linear-gradient(90deg, var(--black) 0%, var(--gray-600) 100%);
  border-radius: 100px;
}
.vl-landing .loyalty-progress-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--gray-400); margin-bottom: 24px; font-weight: 500;
}
.vl-landing .loyalty-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }
.vl-landing .loyalty-brand-row {
  display: flex; align-items: center; justify-content: space-between; padding: 12px 0;
}
.vl-landing .loyalty-brand-info { display: flex; align-items: center; gap: 12px; }
.vl-landing .brand-avatar {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.vl-landing .brand-name { font-size: 13px; font-weight: 600; color: var(--black); }
.vl-landing .brand-tier { font-size: 11px; color: var(--gray-400); }
.vl-landing .brand-pts { font-size: 14px; font-weight: 700; color: var(--black); }
.vl-landing .loyalty-cta {
  margin-top: 24px; width: 100%; padding: 14px;
  background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 700; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: background 0.15s;
}
.vl-landing .loyalty-cta:hover { background: var(--gray-800); }
.vl-landing .stats-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.vl-landing .stat-box {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 24px;
}
.vl-landing .stat-box-value {
  font-size: 28px; font-weight: 700; letter-spacing: -1px;
  color: var(--black); margin-bottom: 6px;
}
.vl-landing .stat-box-label { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.vl-landing .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vl-landing .testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px; transition: box-shadow 0.2s;
}
.vl-landing .testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.vl-landing .stars { display: flex; gap: 3px; margin-bottom: 20px; }
.vl-landing .star { color: var(--black); font-size: 14px; }
.vl-landing .testimonial-text {
  font-size: 15px; color: var(--gray-800); line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.vl-landing .testimonial-author { display: flex; align-items: center; gap: 12px; }
.vl-landing .author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.vl-landing .author-name { font-size: 13px; font-weight: 700; color: var(--black); }
.vl-landing .author-role { font-size: 12px; color: var(--gray-400); }

/* ─── PRICING ─── */
.vl-landing .pricing-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
  max-width: 1140px; margin: 60px auto 0;
}
.vl-landing .pricing-section-meta {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gray-600);
}
.vl-landing .pricing-section-link {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 1px;
}
.vl-landing .pricing-section-link:hover {
  border-bottom-color: var(--black);
}
.vl-landing .pricing-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 40px; background: var(--white); transition: box-shadow 0.2s, transform 0.2s;
}
.vl-landing .pricing-card:hover {
  box-shadow: 0 20px 54px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.vl-landing .pricing-card.featured {
  border: 2px solid var(--black); background: var(--black); color: var(--white);
}
.vl-landing .pricing-plan {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px;
}
.vl-landing .pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.4); }
.vl-landing .pricing-desc { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; }
.vl-landing .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }
.vl-landing .pricing-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px;
}
.vl-landing .pricing-amount {
  font-size: 48px; font-weight: 700; letter-spacing: -2px; color: var(--black);
}
.vl-landing .pricing-card.featured .pricing-amount { color: var(--white); }
.vl-landing .pricing-per { font-size: 14px; color: var(--gray-400); font-weight: 500; }
.vl-landing .pricing-billing {
  margin-top: -20px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--gray-600);
}
.vl-landing .pricing-card.featured .pricing-billing { color: rgba(255,255,255,0.65); }
.vl-landing .pricing-trial {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  background: var(--gray-100);
}
.vl-landing .pricing-card.featured .pricing-trial {
  color: var(--black);
  background: var(--white);
}
.vl-landing .pricing-divider { height: 1px; background: var(--gray-100); margin: 28px 0; }
.vl-landing .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.vl-landing .pricing-core-note {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--gray-600);
}
.vl-landing .pricing-card.featured .pricing-core-note {
  color: rgba(255,255,255,0.62);
}
.vl-landing .pricing-features { list-style: none; margin-bottom: 32px; }
.vl-landing .pricing-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--gray-800); padding: 8px 0;
}
.vl-landing .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
.vl-landing .pricing-features li.unavailable { color: var(--gray-400); }
.vl-landing .pricing-features .check {
  width: 18px; height: 18px; background: var(--green); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.vl-landing .pricing-features .check svg { width: 9px; height: 9px; fill: white; }
.vl-landing .pricing-features .cross {
  width: 18px; height: 18px; background: var(--gray-100); border-radius: 50%; flex-shrink: 0;
}
.vl-landing .pricing-see-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: -8px 0 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 2px;
}
.vl-landing .pricing-see-more::after {
  content: '\203A';
  font-size: 14px;
  line-height: 1;
}
.vl-landing .pricing-see-more:hover {
  border-bottom-color: var(--black);
}
.vl-landing .pricing-card.featured .pricing-see-more {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.32);
}
.vl-landing .pricing-card.featured .pricing-see-more:hover {
  border-bottom-color: rgba(255,255,255,0.7);
}
.vl-landing .pricing-btn {
  width: 100%; padding: 14px; font-family: inherit;
  font-size: 14px; font-weight: 700; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.15s;
}
.vl-landing .pricing-btn-outline {
  background: transparent; color: var(--black); border: 1.5px solid var(--gray-200);
}
.vl-landing .pricing-btn-outline:hover { border-color: var(--black); }
.vl-landing .pricing-btn-solid { background: var(--white); color: var(--black); border: none; }
.vl-landing .pricing-btn-solid:hover { background: var(--gray-100); }
.vl-landing .pricing-badge {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--black);
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 100px; margin-bottom: 20px;
}
.vl-landing .pricing-more-wrap {
  margin-top: 20px;
  text-align: center;
}
.vl-landing .pricing-more-link {
  display: inline-block;
  padding: 12px 22px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.vl-landing .pricing-more-link:hover {
  border-color: var(--black);
}

/* ─── CTA ─── */
.vl-landing .cta-section {
  background: var(--black); padding: 120px 32px; text-align: center;
}
.vl-landing .cta-section h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400; line-height: 1.08; letter-spacing: -1.5px;
  color: var(--white); margin-bottom: 20px;
}
.vl-landing .cta-section h2 em { font-style: italic; color: rgba(255,255,255,0.5); }
.vl-landing .cta-section p { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.vl-landing .cta-actions {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.vl-landing .btn-cta-primary {
  background: var(--white); color: var(--black);
  padding: 16px 36px; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background 0.15s; text-decoration: none; display: inline-block;
}
.vl-landing .btn-cta-primary:hover { background: var(--gray-100); }
.vl-landing .btn-cta-outline {
  background: transparent; color: rgba(255,255,255,0.7);
  padding: 15px 36px; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
  text-decoration: none; display: inline-block;
}
.vl-landing .btn-cta-outline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
.vl-landing .cta-note { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── FOOTER ─── */
.vl-landing footer {
  background: var(--white); border-top: 1px solid var(--gray-200); padding: 72px 32px 40px;
}
.vl-landing .footer-inner { max-width: 1200px; margin: 0 auto; }
.vl-landing .footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.vl-landing .footer-brand-name { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.vl-landing .footer-brand-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; max-width: 260px; }
.vl-landing .footer-col h6 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px;
}
.vl-landing .footer-col ul { list-style: none; }
.vl-landing .footer-col ul li { margin-bottom: 12px; }
.vl-landing .footer-col ul a {
  font-size: 13px; color: var(--gray-600); text-decoration: none; transition: color 0.15s;
}
.vl-landing .footer-col ul a:hover { color: var(--black); }
.vl-landing .footer-bottom {
  border-top: 1px solid var(--gray-100); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.vl-landing .footer-copy { font-size: 13px; color: var(--gray-400); }
.vl-landing .footer-links { display: flex; gap: 24px; }
.vl-landing .footer-links a { font-size: 13px; color: var(--gray-400); text-decoration: none; }
.vl-landing .footer-links a:hover { color: var(--black); }

/* ─── BUSINESS TYPES ─── */
.vl-landing .biz-tabs {
  display: flex; gap: 0; border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0; overflow-x: auto; scrollbar-width: none;
}
.vl-landing .biz-tabs::-webkit-scrollbar { display: none; }
.vl-landing .biz-tab {
  padding: 14px 24px; font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--gray-400); background: transparent; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.vl-landing .biz-tab:hover { color: var(--black); }
.vl-landing .biz-tab.active { color: var(--black); border-bottom-color: var(--black); }
.vl-landing .biz-panel { display: none; }
.vl-landing .biz-panel.active { display: block; }
.vl-landing .biz-panel-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start;
}
.vl-landing .biz-category-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.vl-landing .biz-panel-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px; font-weight: 400; line-height: 1.2;
  letter-spacing: -0.5px; color: var(--black); margin-bottom: 16px;
}
.vl-landing .biz-panel-sub { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 28px; }
.vl-landing .biz-feature-list { list-style: none; margin-bottom: 32px; }
.vl-landing .biz-feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--gray-800); padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
}
.vl-landing .biz-check { font-size: 13px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.vl-landing .biz-cta {
  background: var(--black); color: var(--white); font-family: inherit;
  font-size: 14px; font-weight: 700; padding: 14px 24px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background 0.15s; white-space: nowrap;
}
.vl-landing .biz-cta:hover { background: var(--gray-800); }
.vl-landing .biz-sub-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.vl-landing .biz-sub-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 20px 16px;
  transition: all 0.2s; cursor: pointer; position: relative; overflow: hidden;
}
.vl-landing .biz-sub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--card-accent, var(--black));
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s;
}
.vl-landing .biz-sub-card:hover {
  border-color: var(--gray-400); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.vl-landing .biz-sub-card:hover::before { transform: scaleX(1); }
.vl-landing .biz-sub-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.vl-landing .biz-sub-name { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 5px; letter-spacing: -0.2px; }
.vl-landing .biz-sub-desc { font-size: 11px; color: var(--gray-400); line-height: 1.5; }

/* ─── MODAL ─── */
.vl-landing .modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.vl-landing .modal-overlay.open { opacity: 1; pointer-events: all; }
.vl-landing .modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 480px; margin: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
  opacity: 0; overflow: hidden;
}
.vl-landing .modal-overlay.open .modal { transform: translateY(0) scale(1); opacity: 1; }
.vl-landing .modal-header {
  padding: 28px 32px 0; display: flex;
  align-items: flex-start; justify-content: space-between; gap: 16px;
}
.vl-landing .modal-logo { font-size: 16px; font-weight: 700; color: var(--black); letter-spacing: -0.3px; }
.vl-landing .modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s;
}
.vl-landing .modal-close:hover { background: var(--gray-200); }
.vl-landing .modal-close svg { width: 14px; height: 14px; stroke: var(--gray-600); }
.vl-landing .modal-body { padding: 24px 32px 32px; }
.vl-landing .modal-step { display: none; }
.vl-landing .modal-step.active { display: block; }
.vl-landing .modal-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px; font-weight: 400; letter-spacing: -0.5px;
  color: var(--black); margin-bottom: 8px; line-height: 1.2;
}
.vl-landing .modal-subtitle { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.6; }
.vl-landing .location-selector {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 14px 16px; width: 100%;
  font-family: inherit; font-size: 15px; font-weight: 500; color: var(--black);
  cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px; transition: border-color 0.15s; margin-bottom: 24px;
}
.vl-landing .location-selector:focus { outline: none; border-color: var(--black); }
.vl-landing .location-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; display: block;
}
.vl-landing .role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.vl-landing .role-card {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 24px 20px; cursor: pointer; transition: all 0.15s;
  text-align: center; background: var(--white);
}
.vl-landing .role-card:hover { border-color: var(--black); background: var(--gray-50); }
.vl-landing .role-card.selected { border-color: var(--black); background: var(--black); color: var(--white); }
.vl-landing .role-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; transition: background 0.15s;
}
.vl-landing .role-card.selected .role-icon { background: rgba(255,255,255,0.15); }
.vl-landing .role-icon svg { width: 22px; height: 22px; }
.vl-landing .role-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.2px; }
.vl-landing .role-card p { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.vl-landing .role-card.selected p { color: rgba(255,255,255,0.6); }
.vl-landing .modal-progress { display: flex; align-items: center; gap: 6px; margin-bottom: 24px; }
.vl-landing .modal-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gray-200); transition: all 0.2s;
}
.vl-landing .modal-dot.active { width: 20px; border-radius: 3px; background: var(--black); }
.vl-landing .modal-btn {
  width: 100%; padding: 15px; background: var(--black); color: var(--white);
  font-family: inherit; font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background 0.15s; margin-top: 4px;
}
.vl-landing .modal-btn:hover { background: var(--gray-800); }
.vl-landing .modal-btn:disabled { background: var(--gray-200); color: var(--gray-400); cursor: not-allowed; }
.vl-landing .modal-btn-ghost {
  width: 100%; padding: 12px; background: transparent; color: var(--gray-600);
  font-family: inherit; font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: color 0.15s; margin-top: 8px;
}
.vl-landing .modal-btn-ghost:hover { color: var(--black); }
.vl-landing .modal-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }
.vl-landing .modal-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 16px; }
.vl-landing .modal-note a { color: var(--black); font-weight: 600; text-decoration: none; }
.vl-landing .success-icon {
  width: 64px; height: 64px; background: var(--green-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.vl-landing .success-icon svg { width: 28px; height: 28px; stroke: var(--green); }
.vl-landing .success-chips {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px;
}
.vl-landing .success-chip {
  font-size: 12px; font-weight: 600; background: var(--gray-50);
  border: 1px solid var(--gray-200); color: var(--gray-600);
  padding: 6px 14px; border-radius: 100px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .vl-landing .hero { grid-template-columns: 1fr; gap: 60px; padding: 100px 24px 60px; min-height: auto; }
  .vl-landing .platform-grid { grid-template-columns: 1fr; }
  .vl-landing .features-dark { padding: 48px 24px; margin: 0 16px; }
  .vl-landing .features-grid { grid-template-columns: 1fr 1fr; }
  .vl-landing .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .vl-landing .loyalty-grid { grid-template-columns: 1fr; gap: 48px; }
  .vl-landing .testimonials-grid { grid-template-columns: 1fr; }
  .vl-landing .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .vl-landing .footer-grid { grid-template-columns: 1fr 1fr; }
  .vl-landing .nav-links { display: none; }
  .vl-landing .biz-panel-grid { grid-template-columns: 1fr; gap: 40px; }
  .vl-landing .biz-sub-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .vl-landing .pricing-grid { grid-template-columns: 1fr 1fr; }
}




/* Give AI section labels more presence */
.vl-landing .section-label {
  font-size: 13px; /* up from 12px */
  color: var(--gray-600); /* up from gray-400 */
}

/* Accent blue highlight for "AI" inline emphasis */
.vl-landing .ai-highlight {
  color: var(--accent);
  font-weight: 700;
}

/* Platform section sub — add left border to signal architecture importance */
.vl-landing #section-platform .section-sub {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--gray-800);
}