:root {
  --vh-navy: #094169;
  --vh-navy-dark: #073353;
  --vh-heading: #172f62;
  --vh-accent: #1242a7;
  --vh-lavender: #f8f8fd;
  --vh-hero-bg: #f8f9fe;
  --vh-footer: #08172e;
  --vh-cta: #07365c;
  --vh-orange: #ff6a00;
  --vh-orange-hover: #e85f00;
  --font-body: "Noto Sans Bengali", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #0f172a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--vh-heading);
  font-family: var(--font-body);
}

p, span, a, button, input, textarea, select, label, li {
  font-family: var(--font-body);
}

::selection {
  background: #e0e7ff;
  color: #312e81;
}

.fw-extrabold { font-weight: 800 !important; }
.fw-black { font-weight: 900 !important; }

.text-accent {
  color: var(--vh-accent) !important;
}

.text-heading {
  color: var(--vh-heading) !important;
}

.text-navy {
  color: var(--vh-navy) !important;
}

.bg-lavender {
  background: var(--vh-lavender);
}

.section-pad {
  padding: 4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
  .section-pad {
    padding: 6rem 0;
  }
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vh-accent);
  background: rgba(18, 66, 167, 0.1);
  border: 1px solid rgba(18, 66, 167, 0.2);
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
}

.section-title {
  font-size: clamp(1.875rem, 3.4vw, 3.125rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.section-sub {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.btn-navy {
  background: var(--vh-navy);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  padding: 0.7rem 1.4rem;
  box-shadow: 0 8px 18px rgba(9, 65, 105, 0.18);
}

.btn-navy:hover,
.btn-navy:focus {
  background: var(--vh-navy-dark);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: #1e293b;
  font-weight: 600;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.75rem;
  padding: 0.7rem 1.4rem;
}

.btn-ghost:hover {
  background: #fff;
  color: #1e293b;
  border-color: #cbd5e1;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(18, 66, 167, 0.1);
  border: 1px solid rgba(18, 66, 167, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vh-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.icon-box i,
.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  display: block;
  flex-shrink: 0;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
}

.icon-box-lg svg {
  width: 32px;
  height: 32px;
}

/* Navbar — match original sticky header */
.vh-navbar {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

@supports (backdrop-filter: blur(0)) {
  .vh-navbar { background: rgba(255, 255, 255, 0.4); }
}

.vh-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.vh-brand {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

.vh-brand img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  display: block;
  user-select: none;
  transition: transform 0.2s ease;
}

@media (min-width: 640px) {
  .vh-brand img { height: 3rem; }
}

@media (min-width: 768px) {
  .vh-brand img { height: 3.25rem; }
}

.vh-brand:hover img {
  transform: scale(1.02);
}

.vh-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .vh-nav-links { display: flex; }
}

.vh-nav-links a {
  color: #334155;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.vh-nav-links a:hover {
  color: #094169;
}

.vh-nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .vh-nav-actions { display: flex; }
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.btn-lang:hover {
  background: rgba(255, 255, 255, 0.95);
}

.btn-app-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.2rem;
  background: transparent;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: none;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-app-store:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.05);
}

.btn-app-store img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
  animation: appStoreNudge 2.2s ease-in-out infinite;
}

.btn-app-store:hover img {
  animation: none;
}

@keyframes appStoreNudge {
  0%, 68%, 100% { transform: scale(1) rotate(0deg); }
  74% { transform: scale(1.14) rotate(-10deg); }
  80% { transform: scale(1.14) rotate(10deg); }
  86% { transform: scale(1.08) rotate(-6deg); }
  92% { transform: scale(1.04) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-app-store img {
    animation: none;
  }
}

.vh-mobile-playstore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  color: #334155;
  font-weight: 600;
  text-decoration: none;
}

.vh-mobile-playstore:hover {
  background: #e2e8f0;
  color: #094169;
}

.vh-mobile-playstore img {
  width: 1.375rem;
  height: 1.375rem;
  object-fit: contain;
}

.btn-lang-icon {
  display: inline-flex;
  line-height: 0;
}

.btn-lang-icon svg {
  width: 14px;
  height: 14px;
  color: #475569;
  display: block;
  animation: meshRotate 20s linear infinite;
}

.btn-lang:hover .btn-lang-icon svg {
  transform: scale(1.15);
}

.btn-login {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.btn-login:hover {
  color: #094169;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #094169;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 0.75rem;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(9, 65, 105, 0.15);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-nav-cta:hover {
  background: #073353;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(9, 65, 105, 0.2);
}

.btn-nav-cta:active {
  transform: scale(0.98);
}

.btn-nav-cta-icon {
  display: inline-flex;
  line-height: 0;
}

.btn-nav-cta-icon svg {
  width: 16px;
  height: 16px;
  color: #e2e8f0;
  display: block;
  transition: transform 0.3s ease;
}

.btn-nav-cta:hover .btn-nav-cta-icon svg {
  transform: translateX(4px);
}

.vh-nav-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .vh-nav-mobile { display: none; }
}

.btn-lang-icon-only {
  padding: 0.5rem;
}

.vh-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #334155;
  cursor: pointer;
}

.vh-menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.vh-mobile-drawer {
  padding: 0.5rem 0 1.5rem;
}

.vh-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.vh-mobile-links a {
  color: #334155;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.vh-mobile-links a:hover {
  background: #f8fafc;
  color: #094169;
}

.vh-mobile-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.vh-mobile-login,
.vh-mobile-signup {
  width: 100%;
  padding: 0.625rem;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

.vh-mobile-login {
  color: #334155;
  background: #f1f5f9;
}

.vh-mobile-login:hover {
  background: #e2e8f0;
}

.vh-mobile-signup {
  color: #fff;
  background: #094169;
}

.vh-mobile-signup:hover {
  background: #073353;
  color: #fff;
}

/* Hero — matched to original React/Tailwind layout */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(238, 242, 255, 0.6), #f8f9fe, #fff);
  padding: 3rem 0 5rem;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 4rem 0 7rem;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .hero-inner { padding: 0 2rem; }
}

.hero-copy {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.bg-mesh-grid {
  background-image:
    linear-gradient(to right, rgba(96, 165, 250, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(96, 165, 250, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-a {
  top: -6rem;
  left: 50%;
  width: 850px;
  height: 550px;
  margin-left: -425px;
  background: radial-gradient(circle at center, rgba(191, 219, 254, 0.75) 0%, rgba(147, 197, 253, 0.45) 40%, rgba(96, 165, 250, 0.2) 65%, transparent 80%);
  filter: blur(90px);
}

.hero-orb-b {
  top: 3rem;
  left: 25%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.6) 0%, rgba(186, 230, 253, 0.3) 50%, transparent 70%);
  filter: blur(70px);
}

.hero-orb-c {
  top: 7rem;
  right: 20%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(147, 197, 253, 0.65) 0%, rgba(199, 210, 254, 0.35) 50%, transparent 70%);
  filter: blur(75px);
}

.hero-badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(186, 230, 253, 0.7);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  font-size: 0.75rem;
  font-weight: 600;
  color: #094169;
  line-height: 1.4;
  text-align: center;
}

.hero-badge-text {
  text-align: center;
}

.hero-badge-dot,
.hero-badge-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-dot {
  position: relative;
}

.hero-badge-dot::before,
.hero-badge-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #0ea5e9;
}

.hero-badge-dot::after {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-icon {
  color: #0ea5e9;
}

.hero-badge-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.hero-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: #172f62;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.25rem; line-height: 1.2; }
}

@media (min-width: 768px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 52px; }
}

.hero-subtitle {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 0 0 2.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(18, 66, 167, 0.1);
  color: #1242a7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-check i {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-btn-primary {
  width: 100%;
  padding: 0.875rem 2rem;
  background: #094169;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(9, 65, 105, 0.2);
}

@media (min-width: 576px) {
  .hero-btn-primary { width: auto; }
}

.hero-btn-primary:hover {
  background: #073353;
  color: #fff;
}

.hero-btn-orange {
  width: 100%;
  padding: 0.875rem 2rem;
  background: var(--vh-orange);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(255, 106, 0, 0.28);
}

@media (min-width: 576px) {
  .hero-btn-orange { width: auto; }
}

.hero-btn-orange:hover {
  background: var(--vh-orange-hover);
  color: #fff;
}

.hero-btn-secondary {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #1e293b;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 576px) {
  .hero-btn-secondary { width: auto; }
}

.hero-btn-secondary:hover {
  background: #fff;
  color: #1e293b;
  border-color: #cbd5e1;
}

.hero-play-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f9ff;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-play-icon i {
  font-size: 11px;
  margin-left: 1px;
}

.hero-mockup {
  position: relative;
  max-width: 64rem;
  margin: 4rem auto 0;
}

.hero-frame {
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.65rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #020617;
  cursor: pointer;
}

.hero-video-wrap img,
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.play-btn {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  color: var(--vh-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.5);
  position: relative;
  z-index: 2;
}

.play-btn i {
  font-size: 2rem;
  margin-left: 4px;
}

.play-pulse {
  position: absolute;
  inset: -1rem;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.3);
  filter: blur(8px);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Cards */
.vh-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(18, 66, 167, 0.08);
  border-color: rgba(18, 66, 167, 0.35);
}

.stats-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff, rgba(248, 250, 252, 0.4), #fff);
  border-bottom: 1px solid #f1f5f9;
  padding: 2.5rem 0;
}

@media (min-width: 576px) {
  .stats-section { padding: 3.5rem 0; }
}

.stats-shine {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 6rem;
  transform: translate(-50%, -50%);
  background: rgba(224, 242, 254, 0.3);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.stats-section .hero-inner {
  position: relative;
  z-index: 1;
}

.stat-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  background: #fff;
  transform: translateY(-6px);
  border-color: rgba(18, 66, 167, 0.3);
  box-shadow: 0 20px 25px -5px rgba(18, 66, 167, 0.08), 0 8px 10px -6px rgba(18, 66, 167, 0.05);
}

.stat-glow {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, #1242a7, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-glow {
  opacity: 1;
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(18, 66, 167, 0.1);
  border: 1px solid rgba(18, 66, 167, 0.2);
  color: #1242a7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

@media (min-width: 576px) {
  .stat-icon {
    width: 4rem;
    height: 4rem;
  }
}

.stat-icon i,
.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  display: block;
  flex-shrink: 0;
}

.stat-card:hover .stat-icon {
  background: #1242a7;
  border-color: #1242a7;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(18, 66, 167, 0.25);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1242a7;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  transition: color 0.3s ease;
}

@media (min-width: 576px) {
  .stat-value { font-size: 2.25rem; }
}

.stat-card:hover .stat-value {
  color: #0c3180;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  margin-top: 0.125rem;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
  color: #0f172a;
}

.feature-link {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--vh-accent);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.overview-card .icon-hover,
.feature-card .icon-hover,
.step-card .icon-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.overview-card h3,
.feature-card h3,
.step-card h3 {
  transition: color 0.3s ease;
}

.overview-card:hover .icon-box,
.step-card:hover .icon-box {
  transform: scale(1.05);
}

.feature-card:hover .icon-box {
  transform: scale(1.1);
  background: rgba(18, 66, 167, 0.1);
  border-color: rgba(18, 66, 167, 0.2);
}

.overview-card:hover h3,
.feature-card:hover h3,
.step-card:hover h3 {
  color: var(--vh-accent);
}

.overview-card:hover .feature-link {
  transform: translateX(4px);
}

.step-num {
  font-size: 1.875rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  transition: color 0.3s ease;
}

.step-card:hover .step-num {
  color: rgba(18, 66, 167, 0.4);
}

.overview-card:hover .icon-hover-rotate-6,
.feature-card:hover .icon-hover-rotate-6 {
  transform: scale(1.1) rotate(6deg);
}

.overview-card:hover .icon-hover-lift,
.feature-card:hover .icon-hover-lift {
  transform: scale(1.1) translateY(-4px);
}

.overview-card:hover .icon-hover-rotate-3,
.feature-card:hover .icon-hover-rotate-3 {
  transform: scale(1.1) rotate(3deg);
}

.feature-card:hover .icon-hover-zap,
.step-card:hover .icon-hover-zap {
  transform: scale(1.15) rotate(12deg);
}

.feature-card:hover .icon-hover-rotate-neg-6 {
  transform: scale(1.1) rotate(-6deg);
}

.feature-card:hover .icon-hover-scale-115 {
  transform: scale(1.15);
}

.feature-card:hover .icon-hover-scale-110 {
  transform: scale(1.1);
}

.step-card:hover .icon-hover-sliders {
  transform: scale(1.15) rotate(6deg);
}

.step-card:hover .icon-hover-lift-115 {
  transform: scale(1.15) translateY(-4px);
}

/* Highlight split sections */
.highlight-section {
  background: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

@media (min-width: 576px) {
  .highlight-section { padding: 6rem 0; }
}

.highlight-copy {
  gap: 0;
}

.highlight-copy .section-badge {
  margin-bottom: 1.25rem;
}

.highlight-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  text-decoration: none;
  line-height: 1;
  box-shadow: none;
}

.play-store-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
  background: #dcfce7;
}

.play-store-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.play-store-btn-kicker {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.play-store-btn-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.play-store-btn:hover {
  border-color: #cbd5e1;
  background: #fff;
  color: inherit;
}

@media (min-width: 992px) {
  .highlight-split {
    --bs-gutter-x: 4rem;
  }
}

.highlight-title {
  font-size: clamp(1.875rem, 3.2vw, 3.125rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #172f62;
  margin: 0 0 1.25rem;
}

.highlight-desc {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .highlight-desc { font-size: 1.125rem; }
}

#highlight1-cta {
  width: auto;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.vh-slider {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Highlight-one slider matches the text column height (original items-stretch + h-full) */
#highlight-one .vh-slider {
  flex: 1 1 auto;
  align-self: stretch;
  min-height: 380px;
  height: auto;
}

@media (min-width: 640px) {
  #highlight-one .vh-slider { min-height: 440px; }
}

@media (min-width: 1024px) {
  #highlight-one .vh-slider { min-height: 480px; }
}

#highlight-one .vh-slider .carousel {
  position: absolute;
  inset: 0;
  height: 100%;
}

#highlight-one .vh-slider .carousel-inner,
#highlight-one .vh-slider .carousel-item {
  height: 100%;
}

.vh-static-media {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.vh-static-media.tall,
.vh-slider.tall {
  height: 440px;
  min-height: 440px;
}

.vh-static-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#highlight-two .vh-static-media {
  flex: 1 1 auto;
  align-self: stretch;
}

@media (min-width: 640px) {
  .vh-static-media.tall,
  .vh-slider.tall {
    height: 520px;
    min-height: 520px;
  }
}

@media (min-width: 1024px) {
  .vh-static-media.tall,
  .vh-slider.tall {
    height: 580px;
    min-height: 580px;
  }
}

.vh-slider.tall .carousel {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important;
}

.vh-slider.tall .carousel-inner,
.vh-slider.tall .carousel-item.active {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
}

.vh-slider .carousel,
.vh-slider .carousel-inner {
  height: 100%;
}

.vh-slider .carousel-item {
  height: 100%;
}

.vh-slider .carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.vh-slider:hover .carousel-item.active img {
  transform: scale(1.02);
}

.vh-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.vh-slider-arrow:hover {
  background: #fff;
}

.vh-slider:hover .vh-slider-arrow {
  opacity: 1;
}

.vh-slider-arrow.prev { left: 12px; }
.vh-slider-arrow.next { right: 12px; }

.vh-slider-dots {
  position: absolute;
  right: auto;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
  margin: 0 !important;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
}

.vh-slider-dots [data-bs-target] {
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 8px !important;
  height: 8px !important;
  padding: 0;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5) !important;
  background-clip: border-box;
  box-shadow: none !important;
  text-indent: -999px;
  overflow: hidden;
  opacity: 1 !important;
  transition: width 0.3s ease, background 0.3s ease;
}

.vh-slider-dots .active {
  width: 24px !important;
  background: #fff !important;
}

.check-list {
  list-style: none;
  padding: 0.5rem 0 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(18, 66, 167, 0.1);
  color: #1242a7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.dot-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--vh-accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Pricing */
.billing-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: #f1f5f9;
  padding: 0.4rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.billing-toggle button {
  border: 0;
  background: transparent;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #475569;
}

.billing-toggle button.active {
  background: #fff;
  color: var(--vh-heading);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.save-badge {
  font-size: 0.7rem;
  font-weight: 800;
  background: #d1fae5;
  color: #047857;
  padding: 0.15rem 0.45rem;
  border-radius: 0.4rem;
  margin-left: 0.35rem;
}

.price-card {
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  background: #fff;
  position: relative;
}

.price-card.popular {
  background: var(--vh-navy);
  color: #fff;
  border: none;
  box-shadow: 0 20px 40px rgba(9, 65, 105, 0.25);
}

@media (min-width: 992px) {
  .price-card.popular {
    transform: translateY(-8px);
  }
}

.price-card.popular h3,
.price-card.popular .price-amount {
  color: #fff;
}

.popular-tag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-amount {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--vh-heading);
}

/* FAQ — match original separate cards + typography */
.faq-section {
  background: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
  .faq-section { padding: 6rem 0; }
}

.faq-inner {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .faq-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .faq-inner { padding: 0 2rem; }
}

.faq-header {
  margin-bottom: 3.5rem;
}

.faq-header .section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #172f62;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .faq-header .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .faq-header .section-title { font-size: 50px; }
}

.faq-header .section-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .faq-header .section-sub { font-size: 1.125rem; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item:has(.faq-trigger:not(.collapsed)) {
  border-color: rgba(18, 66, 167, 0.4);
  background: rgba(248, 250, 252, 0.5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.faq-item:has(.faq-trigger:not(.collapsed)):hover {
  border-color: rgba(18, 66, 167, 0.4);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-trigger:focus {
  outline: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 700;
  color: #172f62;
  line-height: 1.375;
}

@media (min-width: 640px) {
  .faq-question { font-size: 1.125rem; }
}

.faq-chevron {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
}

.faq-trigger:not(.collapsed) .faq-chevron {
  background: #1242a7;
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0.25rem 1.5rem 1.5rem;
  color: #475569;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  border-top: 1px solid rgba(226, 232, 240, 0.4);
}

@media (min-width: 640px) {
  .faq-answer { font-size: 1.125rem; }
}

.faq-help {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(18, 66, 167, 0.05);
  border: 1px solid rgba(18, 66, 167, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 576px) {
  .faq-help {
    flex-direction: row;
    text-align: left;
  }
}

.faq-help-copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-help-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #1242a7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(18, 66, 167, 0.2);
}

.faq-help-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.faq-help-title {
  font-size: 1rem;
  font-weight: 700;
  color: #172f62;
  margin: 0;
  line-height: 1.3;
}

.faq-help-body {
  font-size: 1rem;
  color: #475569;
  margin: 0.15rem 0 0;
  line-height: 1.5;
}

.faq-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  color: #1242a7;
  border: 1px solid rgba(18, 66, 167, 0.3);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.faq-help-btn:hover {
  background: rgba(18, 66, 167, 0.1);
  color: #1242a7;
}

/* Testimonials — match original typography and equal-height cards */
.testimonials-section {
  background: #f8f8fd;
  padding: 4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
  .testimonials-section { padding: 6rem 0; }
}

.testimonials-header {
  max-width: 48rem;
  margin-bottom: 4rem;
}

.testimonials-header .section-badge {
  letter-spacing: 0.05em;
  padding: 0.25rem 0.875rem;
}

.testimonials-header .section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #172f62;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .testimonials-header .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .testimonials-header .section-title { font-size: 50px; }
}

.testimonials-header .section-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .testimonials-header .section-sub { font-size: 1.125rem; }
}

.testimonials-row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

@media (min-width: 576px) {
  .testimonial-card { padding: 2rem; }
}

.testimonial-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  display: block;
}

.testimonial-quote-icon {
  color: rgba(18, 66, 167, 0.3);
  line-height: 0;
}

.testimonial-quote-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.testimonial-text {
  color: #334155;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.625;
  margin: 0 0 1.5rem;
}

@media (min-width: 640px) {
  .testimonial-text { font-size: 1.125rem; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e7ff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #172f62;
  margin: 0;
  line-height: 1.3;
}

.testimonial-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  margin: 0.15rem 0 0;
  line-height: 1.4;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e7ff;
}

/* Blog — match original typography and card layout */
.blog-section {
  background: #fff;
  padding: 4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
  .blog-section { padding: 6rem 0; }
}

.blog-header {
  max-width: 48rem;
  margin-bottom: 4rem;
}

.blog-header .section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #172f62;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .blog-header .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .blog-header .section-title { font-size: 50px; }
}

.blog-header .section-sub {
  color: #475569;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .blog-header .section-sub { font-size: 1.125rem; }
}

.blog-row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover,
.blog-card-link:focus {
  color: inherit;
  text-decoration: none;
}

.blog-card-media {
  position: relative;
  height: 14rem;
  overflow: hidden;
  background: #f1f5f9;
  cursor: pointer;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-cat {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: #1242a7;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 0.625rem;
}

.blog-date svg {
  width: 14px;
  height: 14px;
  color: rgba(18, 66, 167, 0.7);
  flex-shrink: 0;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #172f62;
  line-height: 1.375;
  margin: 0 0 0.625rem;
  cursor: pointer;
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .blog-card-title { font-size: 1.25rem; }
}

.blog-card:hover .blog-card-title,
.blog-card-title:hover {
  color: #1242a7;
  text-decoration: underline;
}

.blog-excerpt {
  color: #475569;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  padding: 0 1.5rem 1.5rem;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1242a7;
  cursor: pointer;
  text-align: left;
}

.blog-read svg {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-read {
  color: #0c3180;
}

.blog-card:hover .blog-read svg {
  transform: translateX(4px);
}

/* Bottom CTA */
.bottom-cta-wrap {
  background: #f0f4f8;
  padding: 2.5rem 0 3.5rem;
}

.bottom-cta-box {
  background: var(--vh-cta);
  border-radius: 2rem;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 40px rgba(7, 54, 92, 0.25);
}

.bottom-cta-box h2,
.bottom-cta-box p {
  color: #fff;
}

.btn-orange {
  background: var(--vh-orange);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-weight: 500;
}

.btn-orange:hover {
  background: var(--vh-orange-hover);
  color: #fff;
}

.btn-outline-light-soft {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: transparent;
}

.btn-outline-light-soft:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.cta-mockup {
  max-width: 56rem;
  margin: 2rem auto 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-mockup img {
  width: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--vh-footer);
  color: #94a3b8;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #132847;
  border: 1px solid #1e3b63;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-btn:hover {
  background: #1c3a66;
  color: #fff;
}

/* Security panel — match original two-column card + slider */
.security-section {
  background: #f8f8fd;
  padding: 4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
  .security-section { padding: 5rem 0; }
}

.security-panel {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 576px) {
  .security-panel { padding: 3rem; }
}

.security-split {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 2.5rem;
}

@media (min-width: 992px) {
  .security-split { --bs-gutter-x: 2.5rem; }
}

.security-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1.25rem;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(167, 243, 208, 0.6);
  box-shadow: 0 1px 2px rgba(16, 185, 129, 0.06);
}

.security-badge-icon {
  display: inline-flex;
  line-height: 0;
}

.security-badge-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.security-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #172f62;
  letter-spacing: -0.025em;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 640px) {
  .security-title { font-size: 1.875rem; }
}

@media (min-width: 1024px) {
  .security-title { font-size: 34px; }
}

.security-desc {
  color: #475569;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  margin: 0;
}

@media (min-width: 640px) {
  .security-desc { font-size: 17px; }
}

.security-features-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #172f62;
  margin: 0;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .security-features-title { font-size: 1.25rem; }
}

.security-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.security-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.security-bullet-dot-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
}

@media (min-width: 640px) {
  .security-bullet-dot-wrap { height: 24px; }
}

.security-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1242a7;
  transition: transform 0.2s ease;
}

.security-bullet:hover .security-bullet-dot {
  transform: scale(1.25);
}

.security-bullet-title {
  font-size: 1rem;
  font-weight: 700;
  color: #172f62;
  line-height: 1.375;
  margin: 0 0 0.25rem;
}

@media (min-width: 640px) {
  .security-bullet-title { font-size: 17px; }
}

.security-bullet-desc {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625;
  margin: 0;
}

@media (min-width: 640px) {
  .security-bullet-desc { font-size: 1rem; }
}

.security-slider {
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.security-slider .carousel {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important;
}

.security-slider.vh-static-media,
.security-slider {
  position: relative;
}

.security-slider.vh-static-media img,
.security-slider .carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Modals */
.modal-content.vh-modal {
  border: 0;
  border-radius: 1.5rem;
}

.auth-tabs {
  display: flex;
  background: #f1f5f9;
  padding: 0.25rem;
  border-radius: 0.75rem;
}

.auth-tabs button {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.65rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #475569;
}

.auth-tabs button.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.form-control,
.form-select {
  border-radius: 0.75rem;
  padding: 0.65rem 1rem;
  border-color: #e2e8f0;
}

.form-control:focus,
.form-select:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 0.2rem rgba(15, 23, 42, 0.12);
}

.video-modal .modal-dialog {
  max-width: 48rem;
  margin: 1rem auto;
}

.video-modal .modal-content {
  background: #0f172a;
  color: #fff;
  border: 1px solid #1e293b;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1e293b;
}

.video-modal-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.video-modal-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #f43f5e;
  flex-shrink: 0;
}

.video-modal-header h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.video-modal-close {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: #1e293b;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.video-modal-close:hover {
  background: #334155;
  color: #fff;
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
  display: block;
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.video-chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #0f172a;
  border-top: 1px solid #1e293b;
}

@media (min-width: 576px) {
  .video-chapters { grid-template-columns: repeat(3, 1fr); }
}

.video-chapter {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.6);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.video-chapter:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: #475569;
}

.video-chapter-icon {
  display: inline-flex;
  line-height: 0;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: #34d399;
}

.video-chapter-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.video-chapter-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.video-chapter-time {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 0.15rem;
}

body:has(.video-modal.show) .modal-backdrop {
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.blog-modal .modal-content {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.blog-modal-gallery img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.blog-article-list {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.blog-article-list li::marker {
  color: var(--vh-accent, #1242a7);
  font-weight: 700;
}

/* Animations from original */
@keyframes meshRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.12); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulseGlowOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(40px, -30px) scale(1.15); opacity: 0.9; }
  66% { transform: translate(-30px, 35px) scale(0.9); opacity: 0.6; }
}

@keyframes pulseGlowOrbReverse {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  33% { transform: translate(-35px, 25px) scale(1.1); opacity: 0.85; }
  66% { transform: translate(30px, -35px) scale(0.95); opacity: 0.55; }
}

@keyframes gradientGlowShift {
  0% { background-position: 0% 50%; transform: rotate(0deg) scale(1); }
  50% { background-position: 100% 50%; transform: rotate(180deg) scale(1.08); }
  100% { background-position: 0% 50%; transform: rotate(360deg) scale(1); }
}

@keyframes ambientOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-25px, 20px) scale(0.95); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes iconPulseGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(18, 66, 167, 0));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(18, 66, 167, 0.25));
  }
}

@keyframes iconTilt {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  20% { transform: rotate(-10deg) scale(1.1); }
  40% { transform: rotate(10deg) scale(1.1); }
  60% { transform: rotate(-6deg) scale(1.05); }
  80% { transform: rotate(6deg) scale(1.05); }
}

.animate-mesh-spin { animation: meshRotate 24s linear infinite; }
.animate-orb-glow-1 { animation: pulseGlowOrb 10s ease-in-out infinite; }
.animate-orb-glow-2 { animation: pulseGlowOrbReverse 12s ease-in-out infinite; }
.animate-orb-float { animation: ambientOrbFloat 8s ease-in-out infinite; }
.animate-icon-float { animation: iconFloat 3.5s ease-in-out infinite; }
.animate-icon-float-delayed { animation: iconFloat 3.5s ease-in-out 1.75s infinite; }
.animate-icon-pulse,
.animate-icon-pulse-glow { animation: iconPulseGlow 3s ease-in-out infinite; }
.animate-icon-tilt { animation: iconTilt 4s ease-in-out infinite; }
.animate-icon-wiggle { animation: iconWiggle 2.5s ease-in-out infinite; }
.animate-icon-spin,
.animate-icon-spin-slow { animation: meshRotate 20s linear infinite; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

@media (max-width: 767.98px) {
  .vh-navbar .navbar-brand img { height: 2.4rem; }
  .hero-section { padding: 2.5rem 0 3.5rem; }
  .play-btn { width: 4.25rem; height: 4.25rem; }
  .blog-modal-gallery img { height: 14rem; }
}

a.btn-lang,
a.btn-login,
a.btn-nav-cta,
a.btn-app-store,
a.vh-mobile-login,
a.vh-mobile-signup,
a.vh-mobile-playstore,
a.hero-btn {
  text-decoration: none;
}

a.btn-login,
a.btn-nav-cta,
a.vh-mobile-login,
a.vh-mobile-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-page {
  background: #fff;
}

.blog-detail-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .blog-detail-shell {
    padding: 0 1.5rem;
  }
}

.blog-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1.25rem;
  background: linear-gradient(to bottom, rgba(238, 242, 255, 0.7), #f8f9fe 70%, #fff);
}

.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--vh-accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.blog-back:hover {
  color: var(--vh-navy-dark);
}

.blog-detail-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.85rem;
}

.blog-detail-hero .blog-cat {
  position: static;
  display: inline-block;
}

.blog-detail-title {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--vh-heading);
  margin: 0;
  max-width: 40rem;
}

.lang-bn .blog-detail-title {
  line-height: 1.5;
  font-weight: 700;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-detail-meta i {
  color: var(--vh-accent);
  margin-right: 0.3rem;
}

.blog-detail-body {
  padding-bottom: 4rem;
}

.blog-detail-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .blog-detail-layout {
    grid-template-columns: minmax(0, 1.7fr) 19.5rem;
    gap: 2.5rem;
    align-items: start;
  }
}

.blog-detail-cover {
  margin: 0 0 1rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.blog-detail-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-detail-thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 1.75rem;
}

.blog-detail-thumb {
  width: 4.75rem;
  height: 3.5rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #f1f5f9;
}

.blog-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-detail-thumb.is-active {
  border-color: var(--vh-accent);
}

.blog-detail-prose {
  max-width: 40.5rem;
  color: #3b4453;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.9;
  text-wrap: pretty;
}

.lang-bn .blog-detail-prose {
  font-size: 1.1875rem;
  line-height: 2;
}

.blog-detail-intro {
  margin: 0 0 2rem;
  padding: 0;
  border: 0;
}

.blog-detail-intro p {
  margin: 0 0 1.15em;
  font-weight: 400;
  color: #2b3444;
}

.blog-detail-intro p:last-child {
  margin-bottom: 0;
}

.blog-detail-section {
  margin-bottom: 2.1rem;
}

.blog-detail-section h2 {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 2.1rem 0 0.7rem;
}

.lang-bn .blog-detail-section h2 {
  line-height: 1.55;
  font-size: 1.32rem;
}

.blog-detail-section p {
  margin-bottom: 1.15em;
}

.blog-detail-prose .blog-article-list {
  margin: 0.35rem 0 0.4rem;
  padding-left: 1.35rem;
}

.blog-detail-prose .blog-article-list li {
  margin-bottom: 0.85rem;
  line-height: 1.85;
  padding-left: 0.2rem;
}

.blog-detail-prose .blog-article-list li:last-child {
  margin-bottom: 0;
}

.blog-detail-prose .blog-article-list strong {
  font-weight: 700;
  color: var(--vh-heading);
}

.blog-detail-download {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 2rem;
}

.blog-detail-takeaways {
  background: #f8f9fe;
  border: 1px solid #e8eef8;
  border-radius: 1rem;
  padding: 1.35rem 1.5rem 1.2rem;
  margin: 2.25rem 0;
}

.blog-detail-takeaways h3 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.blog-detail-takeaways ul {
  margin: 0;
  padding-left: 1.2rem;
}

.blog-detail-takeaways li {
  margin-bottom: 0.7rem;
  line-height: 1.8;
}

.blog-detail-takeaways li:last-child {
  margin-bottom: 0;
}

.blog-detail-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8eef8;
}

.blog-detail-share-label {
  font-weight: 700;
  color: var(--vh-heading);
  margin-right: 0.15rem;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--vh-heading);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-share-btn:hover {
  border-color: var(--vh-accent);
  color: var(--vh-accent);
}

.blog-detail-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .blog-detail-side {
    position: sticky;
    top: 6.25rem;
  }
}

.blog-side-cta {
  background: var(--vh-cta);
  color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.blog-side-cta h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.blog-side-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  margin-bottom: 1.1rem;
}

.blog-related h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-related-card {
  display: flex;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-related-card img {
  width: 5.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 0.7rem;
  flex-shrink: 0;
}

.blog-related-card span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--vh-accent);
  margin-bottom: 0.25rem;
}

.blog-related-card strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--vh-heading);
}

.blog-related-card:hover strong {
  color: var(--vh-accent);
}

