/**
 * VisualSync Displays — landing page layout (conversion-focused)
 */
:root {
  --vsd-brand: #0ea5e9;
  --vsd-brand-dark: #0369a1;
  --vsd-ink: #0f172a;
  --vsd-muted: #64748b;
  --vsd-bg: #f8fafc;
  --vsd-dark: #0b1020;
  --vsd-gradient: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
  --vsd-cta-gradient: linear-gradient(90deg, #2196f3 0%, #9c27b0 100%);
  --vsd-radius: 16px;
  --vsd-shadow: 0 20px 50px rgba(15, 23, 42, .12);
}

/* ── Global landing tweaks ── */
.haptic-home .cursor { display: none !important; }

.vsd-section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.vsd-section--light { background: var(--vsd-bg); }
.vsd-section--dark {
  background: var(--vsd-dark);
  color: #fff;
}

.vsd-section-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  padding: 0 16px;
  text-align: center;
}

.vsd-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vsd-brand);
  margin-bottom: 10px;
}

.vsd-section--dark .vsd-eyebrow { color: #38bdf8; }

.vsd-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.vsd-section--dark .vsd-section-head h2 { color: #fff; }

.vsd-section-head p {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--vsd-muted);
}

.vsd-section--dark .vsd-section-head p { color: rgba(255, 255, 255, .72); }

/* ── CTAs ── */
.vsd-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vsd-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--vsd-cta-gradient);
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(33, 150, 243, .35);
  transition: filter .2s ease, transform .2s ease;
}

.vsd-btn-primary:hover {
  filter: brightness(1.06);
  color: #fff !important;
  transform: translateY(-1px);
}

.vsd-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  color: var(--vsd-ink) !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
}

.vsd-btn-secondary:hover {
  background: #f1f5f9;
  color: var(--vsd-ink) !important;
}

.vsd-btn-ghost-light {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
}

.vsd-btn-ghost-light:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff !important;
}

.vsd-trust-line {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--vsd-muted);
}

.vsd-trust-line strong { color: #059669; }

/* ── Hero ── */
.vsd-hero {
  position: relative;
  padding: clamp(88px, 10vw, 104px) 0 clamp(48px, 7vw, 72px);
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(14, 165, 233, .12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(124, 58, 237, .1), transparent 50%),
    #fff;
  overflow: hidden;
}

.vsd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.vsd-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #0c4a6e;
  margin: 0 0 16px;
}

.vsd-hero-copy h1 span {
  background: var(--vsd-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vsd-hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  color: #475569;
  margin: 0 0 12px;
  max-width: 34em;
}

.vsd-hero-bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.vsd-hero-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #334155;
  line-height: 1.45;
}

.vsd-hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.vsd-hero-visual {
  position: relative;
}

.vsd-hero-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, .25);
  box-shadow: var(--vsd-shadow), 0 0 0 1px rgba(255, 255, 255, .5) inset;
  background: #000;
  aspect-ratio: 16 / 10;
}

.vsd-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsd-hero-badge {
  position: absolute;
  bottom: -12px;
  left: 16px;
  right: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(15, 23, 42, .92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(8px);
}

/* Hide legacy banner clutter */
#hap-banner { display: none !important; }

/* ── Stats strip ── */
.vsd-stats {
  background: var(--vsd-dark);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 28px 0;
}

.vsd-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.vsd-stat h3 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin: 0 0 6px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.vsd-stat h3 .vsd-stat-suffix {
  font-size: .45em;
  font-weight: 800;
  color: #38bdf8;
}

.vsd-stat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, .65);
  padding: 0 8px;
}

#hap-counter { display: none !important; }

/* ── How it works ── */
.vsd-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vsd-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--vsd-radius);
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
}

.vsd-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vsd-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
}

.vsd-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0c4a6e;
}

.vsd-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--vsd-muted);
}

/* ── Feature grid (replaces games list) ── */
#games {
  background: var(--vsd-bg) !important;
  padding: clamp(56px, 8vw, 88px) 0 !important;
}

#games .hap-service-content { display: none !important; }
#games .hap-section-title { margin-bottom: 0 !important; }

/* Template .dark-bg-title = white text — override on light sections */
#games .hap-section-title.dark-bg-title h2,
#games .hap-section-title.dark-bg-title .headline-title,
.vsd-faq-section .hap-section-title.dark-bg-title h2,
.vsd-faq-section .hap-section-title.dark-bg-title .headline-title,
.vsd-section--light .dark-bg-title h2 {
  color: #0c4a6e !important;
  -webkit-text-fill-color: #0c4a6e !important;
}

#games .hap-section-title.dark-bg-title p,
.vsd-faq-section .hap-section-title.dark-bg-title p {
  color: #64748b !important;
}

#games .hap-section-title h2,
#games .hap-section-title .headline-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
}

.vsd-faq-section .hap-faq-accordion-area .hap-section-title h2,
.vsd-faq-section .hap-faq-accordion-area .hap-section-title .headline-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
  color: #0c4a6e !important;
  -webkit-text-fill-color: #0c4a6e !important;
}

.vsd-faq-section .hap-faq-accordion-area .accordion-button,
.vsd-faq-section .hap-faq-accordion-area .accordion-button span {
  color: #0f172a !important;
  background-color: #f8fafc !important;
}

.vsd-faq-section .hap-faq-accordion-area .accordion-button::after {
  color: #64748b !important;
}

.vsd-faq-section .hap-faq-accordion-area .accordion-button:not(.collapsed),
.vsd-faq-section .hap-faq-accordion-area .accordion-button:not(.collapsed) span {
  color: #0c4a6e !important;
  background-color: #eff6ff !important;
}

.vsd-faq-section .hap-faq-accordion-area .accordion-body,
.vsd-faq-section .hap-faq-accordion-area .hap-faq-text {
  color: #334155 !important;
}

.vsd-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.vsd-feature-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  transition: border-color .2s, box-shadow .2s;
}

.vsd-feature-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 8px 28px rgba(14, 165, 233, .1);
}

.vsd-feature-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.vsd-feature-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: #0c4a6e;
}

.vsd-feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--vsd-muted);
}

/* ── Video section ── */
.vsd-video-section {
  padding: clamp(48px, 6vw, 72px) 16px;
  background: #050505;
}

.vsd-video-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.vsd-video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 14px;
  display: block;
}

.vsd-video-note {
  max-width: 920px;
  margin: 20px auto 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.vsd-video-note strong { color: #86efac; }

.vsd-youtube-section:nth-of-type(2) { display: none !important; }

/* ── Pricing ── */
.vsd-pricing-section {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}

.vsd-pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #bae6fd;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--vsd-shadow);
}

.vsd-pricing-card .vsd-price {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #0c4a6e;
  line-height: 1;
  margin: 8px 0;
}

.vsd-pricing-card .vsd-price span {
  font-size: .35em;
  font-weight: 700;
  color: var(--vsd-muted);
}

.vsd-pricing-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.vsd-pricing-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}

.vsd-pricing-list li:last-child { border-bottom: 0; }

.vsd-pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.vsd-pricing-trial {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 14px;
  font-weight: 700;
}

#hap-skill-faq .hap-skill-content,
#hap-skill-faq > .container > .hap-section-title:first-of-type { display: none !important; }

#hap-skill-faq .hap-section-title#hap-pricing { display: none !important; }

#hap-testimonial {
  padding: clamp(48px, 6vw, 72px) 0 !important;
  background: #fff !important;
}

#hap-testimonial .testimonial-author h3 {
  color: #0369a1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#hap-testimonial .testimonial-desc {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
  color: #334155 !important;
}

#hap-testimonial .testimonial-author span {
  color: #64748b !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── FAQ ── */
.vsd-faq-section {
  background: #fff !important;
  padding-top: clamp(48px, 6vw, 64px) !important;
}

.vsd-faq-section .hap-faq-img-wrapper { display: none !important; }

.vsd-faq-section .hap-faq-content {
  margin-top: 0 !important;
  padding-top: clamp(32px, 5vw, 48px) !important;
  padding-bottom: clamp(32px, 5vw, 48px) !important;
}

.vsd-faq-section .col-lg-6 { width: 100%; max-width: 760px; margin: 0 auto; }

/* ── Final CTA ── */
.vsd-final-cta {
  text-align: center;
  background: var(--vsd-gradient);
  color: #fff;
  padding: clamp(48px, 7vw, 72px) 20px;
}

.vsd-final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  margin: 0 0 12px;
}

.vsd-final-cta p {
  margin: 0 auto 24px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  opacity: .95;
}

.vsd-final-cta .vsd-btn-primary {
  background: #fff;
  color: #0369a1 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.vsd-final-cta .vsd-btn-primary:hover { color: #0369a1 !important; }

/* ── Mobile sticky CTA ── */
.vsd-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid #e2e8f0;
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, .12);
}

.vsd-mobile-cta .vsd-btn-primary {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .vsd-hero-grid { grid-template-columns: 1fr; }
  .vsd-hero-visual { order: -1; max-width: 560px; margin: 0 auto; }
  .vsd-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .vsd-steps { grid-template-columns: 1fr; }
  .vsd-feature-grid { grid-template-columns: 1fr 1fr; }
  .vsd-mobile-cta { display: block; }
  body.haptic-home { padding-bottom: 72px; }
}

@media (max-width: 575px) {
  .vsd-feature-grid { grid-template-columns: 1fr; }
  .vsd-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Footer ── */
.vsd-footer {
  background: #0b1020;
  color: rgba(255, 255, 255, .78);
  padding: clamp(48px, 7vw, 72px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.vsd-footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(32px, 5vw, 48px);
}

.vsd-footer-logo img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.vsd-footer-brand p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
  max-width: 28em;
}

.vsd-footer-cta {
  font-size: 14px !important;
  padding: 12px 22px !important;
}

.vsd-footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.vsd-footer-col-sub {
  margin-top: 22px !important;
}

.vsd-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vsd-footer-col li {
  margin-bottom: 8px;
}

.vsd-footer-col a,
.vsd-footer-col span {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .15s ease;
}

.vsd-footer-col a:hover {
  color: #38bdf8;
}

.vsd-footer-contact a,
.vsd-footer-contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.vsd-footer-contact i {
  color: #38bdf8;
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vsd-footer-videos a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vsd-footer-videos .fab.fa-youtube {
  color: #f87171;
  font-size: 16px;
}

.vsd-footer-account {
  margin-top: 14px !important;
}

.vsd-footer-account a {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.vsd-footer-account a:hover {
  color: #38bdf8;
}

.vsd-footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.vsd-footer-bar p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.vsd-footer-bar a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
}

.vsd-footer-bar a:hover {
  color: #38bdf8;
}

.vsd-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}

.vsd-footer-social a:hover {
  border-color: #38bdf8;
  color: #38bdf8;
}

@media (max-width: 991px) {
  .vsd-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .vsd-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .vsd-footer-main {
    grid-template-columns: 1fr;
  }

  .vsd-footer-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Why Businesses section ── */
.vsd-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vsd-outcome-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--vsd-radius);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.vsd-outcome-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 12px 36px rgba(14, 165, 233, .12);
  transform: translateY(-2px);
}

.vsd-outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(14, 165, 233, .12), rgba(124, 58, 237, .1));
  margin-bottom: 16px;
}

.vsd-outcome-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #0c4a6e;
}

.vsd-outcome-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--vsd-muted);
}

.vsd-outcomes-grid .vsd-outcome-card:nth-child(4),
.vsd-outcomes-grid .vsd-outcome-card:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 992px) {
  .vsd-outcomes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .vsd-outcomes-grid .vsd-outcome-card:nth-child(1),
  .vsd-outcomes-grid .vsd-outcome-card:nth-child(2),
  .vsd-outcomes-grid .vsd-outcome-card:nth-child(3) {
    grid-column: span 2;
  }
  .vsd-outcomes-grid .vsd-outcome-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .vsd-outcomes-grid .vsd-outcome-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 767px) {
  .vsd-outcomes-grid { grid-template-columns: 1fr; }
  .vsd-outcomes-grid .vsd-outcome-card { grid-column: auto !important; }
}

/* ── Mid-page CTA bands ── */
.vsd-mid-cta {
  text-align: center;
  padding: clamp(40px, 6vw, 56px) 20px;
  background: var(--vsd-dark);
  color: #fff;
}

.vsd-mid-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.15;
}

.vsd-mid-cta p {
  margin: 0 auto 22px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .75);
}

.vsd-mid-cta--gradient {
  background: var(--vsd-gradient);
}

.vsd-mid-cta--light {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  color: var(--vsd-ink);
}

.vsd-mid-cta--light h2 { color: #0c4a6e; }
.vsd-mid-cta--light p { color: var(--vsd-muted); }

/* ── Comparison section ── */
.vsd-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
}

.vsd-compare-col {
  border-radius: 20px;
  padding: 32px 28px;
}

.vsd-compare-col--old {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.vsd-compare-col--new {
  background: linear-gradient(160deg, rgba(14, 165, 233, .08), rgba(124, 58, 237, .06));
  border: 2px solid #7dd3fc;
  box-shadow: var(--vsd-shadow);
}

.vsd-compare-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.vsd-compare-col--old .vsd-compare-label { color: #94a3b8; }
.vsd-compare-col--new .vsd-compare-label { color: #0369a1; }

.vsd-compare-col h3 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
}

.vsd-compare-col--old h3 { color: #64748b; }
.vsd-compare-col--new h3 { color: #0c4a6e; }

.vsd-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vsd-compare-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.vsd-compare-list li:last-child { border-bottom: 0; }

.vsd-compare-col--old .vsd-compare-list li {
  color: #64748b;
}

.vsd-compare-col--old .vsd-compare-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 800;
}

.vsd-compare-col--new .vsd-compare-list li {
  color: #334155;
}

.vsd-compare-col--new .vsd-compare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

@media (max-width: 767px) {
  .vsd-compare-grid { grid-template-columns: 1fr; }
}

/* ── Industry cards ── */
.vsd-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vsd-industry-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 18px;
  transition: border-color .2s, box-shadow .2s;
}

.vsd-industry-card:hover {
  border-color: #bae6fd;
  box-shadow: 0 8px 28px rgba(14, 165, 233, .1);
}

.vsd-industry-card .vsd-industry-icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}

.vsd-industry-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #0c4a6e;
}

.vsd-industry-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--vsd-muted);
}

@media (max-width: 991px) {
  .vsd-industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .vsd-industry-grid { grid-template-columns: 1fr; }
}

/* ── Social proof ── */
.vsd-social-proof {
  background: #fff;
}

.vsd-proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.vsd-proof-stat {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  background: var(--vsd-bg);
  border: 1px solid #e2e8f0;
}

.vsd-proof-stat h3 {
  margin: 0 0 6px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #0c4a6e;
  line-height: 1;
}

.vsd-proof-stat p {
  margin: 0;
  font-size: 13px;
  color: var(--vsd-muted);
  line-height: 1.35;
}

.vsd-industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.vsd-industry-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.vsd-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vsd-testimonial-card {
  background: var(--vsd-bg);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 22px;
}

.vsd-testimonial-card blockquote {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
}

.vsd-testimonial-card cite {
  display: block;
  font-style: normal;
}

.vsd-testimonial-card cite strong {
  display: block;
  font-size: 15px;
  color: #0369a1;
  margin-bottom: 2px;
}

.vsd-testimonial-card cite span {
  font-size: 13px;
  color: var(--vsd-muted);
}

#hap-testimonial { display: none !important; }

@media (max-width: 991px) {
  .vsd-proof-stats { grid-template-columns: repeat(2, 1fr); }
  .vsd-testimonial-grid { grid-template-columns: 1fr; }
}

/* ── Video demo (enhanced) ── */
.vsd-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.vsd-video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 14px;
  display: block;
}

.vsd-video-card-label {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

@media (max-width: 767px) {
  .vsd-video-grid { grid-template-columns: 1fr; }
}

/* ── Selfie Wall featured (large section) ── */
.vsd-selfie-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0 clamp(70px, 8vw, 90px);
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(167, 139, 250, .18), transparent 55%),
    #0b1020;
  overflow: hidden;
}

.vsd-selfie-inner { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

.vsd-selfie-head { text-align: center; margin-bottom: 28px; }

.vsd-selfie-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 12px;
}

.vsd-selfie-head h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 16px;
}

.vsd-selfie-head p {
  color: rgba(255, 255, 255, .78);
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.65;
}

.vsd-selfie-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 32px;
  max-width: 900px;
}

.vsd-selfie-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(167, 139, 250, .35);
  color: #e9d5ff;
  font-size: 14px;
  font-weight: 700;
}

.vsd-selfie-pill::before {
  content: "✓";
  color: #86efac;
  font-weight: 800;
}

.vsd-selfie-showcase {
  max-width: 980px;
  margin: 0 auto 34px;
}

.vsd-selfie-showcase img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(167, 139, 250, .35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45), 0 0 50px rgba(124, 58, 237, .12);
}

.vsd-money-banner {
  max-width: 820px;
  margin: 26px auto 36px;
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, .16), rgba(34, 197, 94, .05));
  border: 1px solid rgba(34, 197, 94, .4);
  border-radius: 16px;
  padding: 18px 22px;
  color: #d1fae5;
  font-size: 17px;
  line-height: 1.5;
}

.vsd-money-banner strong { color: #86efac; }

.vsd-selfie-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vsd-sw-card {
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 30px 28px;
  color: #fff;
}

.vsd-sw-card.pro {
  background: linear-gradient(160deg, rgba(124, 58, 237, .22), rgba(219, 39, 119, .12));
  border-color: rgba(167, 139, 250, .55);
  box-shadow: 0 20px 60px rgba(124, 58, 237, .25);
}

.vsd-sw-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.vsd-sw-tag.lite { background: rgba(255, 255, 255, .12); color: #e9d5ff; }
.vsd-sw-tag.pro { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1a1004; }

.vsd-sw-card h3 { font-size: 24px; font-weight: 800; margin: 0 0 6px; }

.vsd-sw-price { font-size: 32px; font-weight: 900; margin-bottom: 4px; }
.vsd-sw-price span { font-size: 15px; font-weight: 600; opacity: .7; }

.vsd-sw-card .vsd-sw-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  margin-bottom: 18px;
}

.vsd-sw-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.vsd-sw-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.vsd-sw-list li:last-child { border-bottom: 0; }
.vsd-sw-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: #86efac; font-weight: 800; }
.vsd-sw-card.pro .vsd-sw-list li::before { color: #fbbf24; }

.vsd-sw-cta {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  font-size: 14px;
}

.vsd-sw-cta.lite { background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .2); }
.vsd-sw-cta.pro { background: linear-gradient(135deg, #7c3aed, #db2777); color: #fff; }

.vsd-sw-payoff {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  margin-top: 28px;
}

@media (max-width: 760px) {
  .vsd-selfie-cards { grid-template-columns: 1fr; }
}
