/* Varicose Veins inner page — extends flowcare-styles-v2.css */

/* ── Hoist all brand tokens to :root so .vv-page inherits them ── */
:root {
  --navy: #0E2F6B;
  --navy-deep: #07173d;
  --navy-2: #1a3d8a;
  --cyan: #1FC3C7;
  --cyan-2: #5BD9DC;
  --cyan-deep: #0a8a8d;
  --gold: #f4b942;
  --coral: #ff6b6b;
  --light-bg: #f0f7fa;
  --light-bg-2: #ffffff;
  --light-bg-tint: #e6f3f5;
  --light-ink: #0E2F6B;
  --light-ink-2: #3d4f72;
  --light-ink-3: #7a85a0;
  --light-line: rgba(14,47,107,0.10);
  --light-accent: #0a8a8d;
  --wa: #25D366;
  --wa-deep: #128C7E;
  --wa-bg: #DCF8C6;
}

.vv-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--light-bg);
  color: var(--light-ink);
}

/* ── also hoist to .fc-page so homepage tokens still work ── */
.fc-page {
  --navy: #0E2F6B;
  --navy-deep: #07173d;
  --navy-2: #1a3d8a;
  --cyan: #1FC3C7;
  --cyan-2: #5BD9DC;
  --cyan-deep: #0a8a8d;
  --gold: #f4b942;
}

/* Layout guard — VV page max-width */
.vv-page { max-width: 1440px; margin: 0 auto; overflow-x: hidden; }

/* Keep header identical to homepage (use base .fc-nav styles) */

/* Keep footer identical to homepage (use base .fc-footer styles) */

/* Section inner widths */
.vv-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.vv-section { padding: 80px 0; }
.vv-hero-inner { padding: 56px 56px 64px; }
.vv-wa-strip-inner { padding: 0 56px; }
.vv-final-inner { padding: 0 56px; }

/* Hero grid — ensure right col is visible */
.vv-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* CEAP grid fix */
.vv-ceap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
}
.vv-ceap-detail { min-height: 540px; }

/* Symptom checker fix */
.vv-checker {
  min-height: 480px;
}
.vv-checker-form, .vv-checker-result { min-height: 480px; }

/* Comparison table — allow horizontal scroll on narrow */
.vv-compare { overflow-x: auto; }
.vv-compare-head,
.vv-compare-row { min-width: 860px; }

/* Doctor section */
.vv-doctor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* Recovery timeline horizontal */
.vv-recovery { gap: 10px; }
.vv-recovery-step { min-width: 200px; }

/* Byline responsive */
.vv-byline { padding: 16px 56px; }
.vv-breadcrumb-inner { padding: 0 56px; }

/* ── Keyframe resets so VV page animations work without .fc-page scope ── */
@keyframes fc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes fc-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
@keyframes vv-wa-pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0; }
}
@keyframes fc-shine {
  0%, 60% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ========== BREADCRUMB ========== */
.vv-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--light-line);
  padding: 14px 0;
  font-size: 13px;
}
.vv-breadcrumb-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 8px;
  color: var(--light-ink-3);
}
.vv-breadcrumb a { color: var(--light-ink-3); text-decoration: none; }
.vv-breadcrumb a:hover { color: var(--cyan-deep); }
.vv-breadcrumb b { color: var(--navy); font-weight: 600; }
.vv-breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }

/* ========== AUTHOR BYLINE ========== */
.vv-byline {
  max-width: 1280px; margin: 0 auto; padding: 18px 40px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--light-line);
  background: #fff;
}
.vv-byline-author {
  display: flex; align-items: center; gap: 10px;
}
.vv-byline-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  display: grid; place-items: center;
  color: var(--navy); font-weight: 700; font-size: 13px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(14,47,107,0.15);
}
.vv-byline-name { font-size: 13px; color: var(--light-ink); }
.vv-byline-name b { color: var(--navy); font-weight: 700; }
.vv-byline-name a { color: var(--cyan-deep); text-decoration: none; font-weight: 600; }
.vv-byline-meta {
  display: flex; gap: 14px; align-items: center;
  margin-left: auto;
  font-size: 12px; color: var(--light-ink-3);
}
.vv-byline-meta span { display: inline-flex; align-items: center; gap: 5px; }
.vv-byline-meta svg { width: 13px; height: 13px; }
.vv-byline-meta b { color: var(--navy); font-weight: 600; }
.vv-byline-reviewed {
  background: rgba(31,195,199,0.1);
  border: 1px solid rgba(31,195,199,0.3);
  padding: 4px 10px; border-radius: 100px;
  color: var(--cyan-deep); font-weight: 600;
}

/* ========== HERO ========== */
.vv-hero {
  background:
    radial-gradient(ellipse at top right, rgba(31,195,199,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(14,47,107,0.95) 0%, transparent 70%),
    linear-gradient(180deg, #0a1838 0%, #0E2F6B 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vv-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 75%);
}
.vv-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 56px 40px 64px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  position: relative; z-index: 2;
}

.vv-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #5BD9DC; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(31,195,199,0.12); border: 1px solid rgba(31,195,199,0.3);
  margin-bottom: 22px;
}
.vv-hero-eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: fc-pulse 1.4s ease-in-out infinite;
}
.vv-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 600; margin: 0 0 14px;
}
.vv-hero-h1 i { color: #5BD9DC; font-style: italic; }
.vv-hero-h1-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 22px; color: rgba(255,255,255,0.8); margin-bottom: 24px;
  font-weight: 500;
}
.vv-hero-lede {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 560px; margin-bottom: 28px;
}
.vv-hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 18px 22px; border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.vv-hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.vv-hero-trust-item svg { color: var(--cyan); width: 18px; height: 18px; }
.vv-hero-trust-item b { color: #fff; font-weight: 700; }
.vv-hero-trust-item span { color: rgba(255,255,255,0.7); }

.vv-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.vv-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: 220ms;
  text-decoration: none;
}
.vv-cta-wa {
  background: var(--wa); color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  position: relative;
}
.vv-cta-wa::before {
  content: ''; position: absolute; inset: -4px; border-radius: 100px;
  background: var(--wa); opacity: 0.4;
  animation: vv-wa-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes vv-wa-pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0; }
}
.vv-cta-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.vv-cta-form {
  background: var(--cyan); color: var(--navy);
}
.vv-cta-form:hover { background: var(--cyan-2); transform: translateY(-2px); }
.vv-cta-call {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.vv-cta-call:hover { background: rgba(255,255,255,0.15); }

/* Hero stats */
.vv-hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 36px;
}
.vv-hero-stat {
  padding: 16px; border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.vv-hero-stat-k {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; color: var(--cyan);
  letter-spacing: -0.02em; line-height: 1;
}
.vv-hero-stat-v {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 4px;
}

/* Hero right — animated leg illustration */
.vv-hero-vis {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  min-height: 580px;
}
.vv-hero-vis-tag {
  position: absolute; top: 22px; right: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(31,195,199,0.2); border: 1px solid rgba(31,195,199,0.4);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #5BD9DC; font-weight: 700;
}
.vv-hero-vis-tag .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  animation: fc-pulse 1s ease-in-out infinite;
}
.vv-hero-vis-svg-wrap {
  flex: 1; display: grid; place-items: center;
  margin: 20px 0;
}
.vv-hero-vis-caption {
  text-align: center;
}
.vv-hero-vis-stage {
  display: inline-flex; gap: 6px; margin-bottom: 8px;
}
.vv-hero-vis-stage span {
  width: 32px; height: 4px; border-radius: 100px;
  background: rgba(255,255,255,0.15);
  transition: 300ms;
}
.vv-hero-vis-stage span.active { background: var(--cyan); width: 48px; }
.vv-hero-vis-cap {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: #fff; line-height: 1.2;
}
.vv-hero-vis-cap i { color: #5BD9DC; }

/* ========== STICKY WHATSAPP STRIP ========== */
.vv-wa-strip {
  background: linear-gradient(90deg, var(--wa) 0%, var(--wa-deep) 100%);
  color: #fff;
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.vv-wa-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 20px;
}
.vv-wa-strip-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.vv-wa-strip-icon svg { width: 22px; height: 22px; }
.vv-wa-strip-text { flex: 1; font-size: 14px; }
.vv-wa-strip-text b { font-weight: 700; }
.vv-wa-strip-cta {
  background: #fff; color: var(--wa-deep);
  padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: 200ms;
}
.vv-wa-strip-cta:hover { transform: translateX(2px); }
.vv-wa-strip-stats {
  display: flex; gap: 14px;
  font-size: 12px; color: rgba(255,255,255,0.85);
}
.vv-wa-strip-stats span { display: flex; align-items: center; gap: 5px; }
.vv-wa-strip-stats svg { width: 13px; height: 13px; }

/* ========== SECTION SHARED ========== */
.vv-section {
  padding: 72px 0;
  position: relative;
}
.vv-section-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
}
.vv-section-head { max-width: 760px; margin-bottom: 44px; }
.vv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan-deep); font-weight: 700;
  margin-bottom: 12px;
}
.vv-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
}
.vv-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 10px;
}
.vv-h2 i { color: var(--cyan-deep); font-style: italic; }
.vv-h2-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 18px; color: var(--cyan-deep); margin-bottom: 18px;
  font-weight: 500;
}
.vv-lede {
  font-size: 16px; line-height: 1.65; color: var(--light-ink-2);
}

.vv-section.alt { background: var(--light-bg-tint); }
.vv-section.dark {
  background: linear-gradient(180deg, #0a1838 0%, #0E2F6B 100%);
  color: #fff;
}
.vv-section.dark .vv-h2 { color: #fff; }
.vv-section.dark .vv-h2 i { color: var(--cyan); }
.vv-section.dark .vv-lede { color: rgba(255,255,255,0.78); }
.vv-section.dark .vv-eyebrow { color: var(--cyan); }

/* ========== SYMPTOM CHECKER ========== */
.vv-checker {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px;
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(14,47,107,0.08);
}
.vv-checker-form {
  padding: 36px;
}
.vv-checker-progress {
  display: flex; gap: 6px; margin-bottom: 22px;
}
.vv-checker-progress span {
  flex: 1; height: 4px; border-radius: 100px;
  background: var(--light-bg-tint);
  transition: 350ms;
}
.vv-checker-progress span.done { background: var(--cyan); }
.vv-checker-progress span.active { background: var(--gold); }
.vv-checker-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 6px;
}
.vv-checker-q-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 14px; color: var(--cyan-deep); margin-bottom: 22px;
}
.vv-checker-options {
  display: grid; gap: 10px;
}
.vv-checker-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 14px;
  background: var(--light-bg);
  border: 2px solid var(--light-line);
  cursor: pointer; transition: 200ms;
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-align: left;
}
.vv-checker-option:hover {
  border-color: var(--cyan);
  background: rgba(31,195,199,0.05);
}
.vv-checker-option.selected {
  border-color: var(--cyan-deep);
  background: rgba(31,195,199,0.12);
}
.vv-checker-option-pin {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 2px solid var(--light-line);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 11px; font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: var(--light-ink-3);
}
.vv-checker-option.selected .vv-checker-option-pin {
  background: var(--cyan); color: var(--navy); border-color: var(--cyan);
}
.vv-checker-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px;
}
.vv-checker-back {
  padding: 12px 20px; border-radius: 100px;
  background: transparent; border: 1px solid var(--light-line);
  color: var(--light-ink-3); cursor: pointer;
  font-size: 13px; font-weight: 600;
}
.vv-checker-next {
  padding: 12px 22px; border-radius: 100px;
  background: var(--navy); color: #fff;
  border: none; cursor: pointer;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.vv-checker-next:hover { background: var(--navy-deep); }

.vv-checker-result {
  padding: 36px;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.vv-checker-result::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,195,199,0.4), transparent 70%);
  filter: blur(40px);
}
.vv-checker-result > * { position: relative; z-index: 1; }
.vv-checker-result-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; line-height: 1.15;
  color: #fff;
  margin-bottom: 10px;
}
.vv-checker-result-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 14px; color: var(--cyan); margin-bottom: 20px;
}
.vv-checker-meter {
  margin: 20px 0;
}
.vv-checker-meter-bar {
  height: 8px; border-radius: 100px;
  background: rgba(255,255,255,0.1); overflow: hidden;
  margin-bottom: 6px;
}
.vv-checker-meter-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transition: 800ms cubic-bezier(0.4,0,0.2,1);
}
.vv-checker-meter-label {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
}
.vv-checker-stage-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(244,185,66,0.15); border: 1px solid rgba(244,185,66,0.4);
  color: var(--gold); font-weight: 700; font-size: 13px;
  margin-bottom: 14px;
}
.vv-checker-result-msg {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85);
  margin-bottom: 24px; flex: 1;
}
.vv-checker-result-cta {
  display: flex; flex-direction: column; gap: 10px;
}

/* ========== CEAP VISUALIZER ========== */
.vv-ceap {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
  align-items: start;
}
.vv-ceap-stages {
  display: grid; gap: 12px;
}
.vv-ceap-stage {
  padding: 18px 22px; border-radius: 16px;
  background: #fff; border: 1px solid var(--light-line);
  display: grid; grid-template-columns: 60px 1fr auto; gap: 18px;
  align-items: center;
  cursor: pointer; transition: 220ms;
}
.vv-ceap-stage:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
}
.vv-ceap-stage.active {
  background: var(--navy); color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 12px 30px rgba(14,47,107,0.2);
}
.vv-ceap-stage-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  color: var(--cyan-deep);
  letter-spacing: -0.02em; line-height: 1;
}
.vv-ceap-stage.active .vv-ceap-stage-num { color: var(--cyan); }
.vv-ceap-stage-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.005em; line-height: 1.2;
}
.vv-ceap-stage.active .vv-ceap-stage-name { color: #fff; }
.vv-ceap-stage-sub {
  font-size: 12px; color: var(--light-ink-3); margin-top: 2px;
}
.vv-ceap-stage.active .vv-ceap-stage-sub { color: rgba(255,255,255,0.6); }
.vv-ceap-stage-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-bg-tint);
  display: grid; place-items: center;
  color: var(--light-ink-3);
}
.vv-ceap-stage.active .vv-ceap-stage-arrow { background: var(--cyan); color: var(--navy); }

.vv-ceap-detail {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  position: sticky; top: 100px;
  overflow: hidden;
}
.vv-ceap-detail::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,195,199,0.4), transparent 70%);
  filter: blur(40px);
}
.vv-ceap-detail > * { position: relative; z-index: 1; }
.vv-ceap-detail-svg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  min-height: 220px;
}
.vv-ceap-detail-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(31,195,199,0.15); border: 1px solid rgba(31,195,199,0.3);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); font-weight: 700;
  margin-bottom: 14px;
}
.vv-ceap-detail-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; line-height: 1.15;
  color: #fff;
  margin-bottom: 8px;
}
.vv-ceap-detail-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 14px; color: var(--cyan); margin-bottom: 18px;
}
.vv-ceap-detail-p {
  font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}
.vv-ceap-detail-tx {
  background: rgba(244,185,66,0.1); border: 1px solid rgba(244,185,66,0.25);
  border-radius: 14px; padding: 14px 16px;
  font-size: 13px; color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.vv-ceap-detail-tx b { color: var(--gold); }
.vv-ceap-detail-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 12px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none;
  transition: 200ms;
}
.vv-ceap-detail-cta:hover { background: #1ebe5a; transform: translateX(2px); }

/* ========== WARNING SIGNS ========== */
.vv-warnings {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.vv-warn {
  padding: 22px; border-radius: 18px;
  background: #fff; border: 1px solid var(--light-line);
  position: relative; transition: 220ms;
}
.vv-warn:hover {
  transform: translateY(-3px);
  border-color: #e87a5d;
  box-shadow: 0 14px 34px rgba(232,122,93,0.15);
}
.vv-warn-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #fff5ed, #ffe5d4);
  color: #e87a5d;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.vv-warn-icon svg { width: 22px; height: 22px; }
.vv-warn-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--navy);
  line-height: 1.2; margin-bottom: 6px;
}
.vv-warn-p {
  font-size: 13px; line-height: 1.55; color: var(--light-ink-2);
}
.vv-warn-urgent {
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: #e87a5d; font-weight: 700;
  padding: 3px 8px; border-radius: 100px;
  background: #fff5ed;
}

/* ========== COMPARISON TABLE ========== */
.vv-compare {
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(14,47,107,0.06);
}
.vv-compare-head {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  background: var(--navy); color: #fff;
}
.vv-compare-head > div {
  padding: 18px 16px;
  font-size: 13px; font-weight: 700;
  text-align: center;
}
.vv-compare-head > div:first-child { text-align: left; padding-left: 22px; }
.vv-compare-head .featured {
  background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
  color: var(--navy);
  position: relative;
}
.vv-compare-head .featured::before {
  content: 'FLOWCARE'; position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  font-size: 8px; letter-spacing: 0.2em;
  background: var(--gold); color: var(--navy);
  padding: 2px 8px; border-radius: 100px; font-weight: 800;
}
.vv-compare-row {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  border-bottom: 1px solid var(--light-line);
  transition: 200ms;
}
.vv-compare-row:last-child { border-bottom: none; }
.vv-compare-row:hover { background: var(--light-bg-tint); }
.vv-compare-row > div {
  padding: 14px 16px;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.vv-compare-row > div:first-child {
  text-align: left; justify-content: flex-start; padding-left: 22px;
  font-weight: 600; color: var(--navy);
}
.vv-compare-row > div.featured {
  background: rgba(31,195,199,0.06);
  font-weight: 700; color: var(--cyan-deep);
}
.vv-compare-cell-good { color: #1d7a4d; font-weight: 700; }
.vv-compare-cell-bad { color: #c43e6a; }
.vv-compare-cell-meh { color: var(--light-ink-3); }

/* ========== PROCEDURE WALKTHROUGH ========== */
.vv-walk {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: start;
}
.vv-walk-vis {
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 28px; padding: 32px;
  position: sticky; top: 100px;
  box-shadow: 0 20px 50px rgba(14,47,107,0.08);
  min-height: 420px;
}
.vv-walk-vis-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(31,195,199,0.12); color: var(--cyan-deep);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 14px;
}
.vv-walk-vis-tag .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: fc-pulse 1s ease-in-out infinite; }
.vv-walk-vis-svg { display: grid; place-items: center; min-height: 280px; }
.vv-walk-vis-step {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; color: var(--cyan-deep);
  font-weight: 700;
  margin-top: 18px;
}
.vv-walk-vis-cap {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--navy);
  margin-top: 4px; line-height: 1.2;
}

.vv-walk-steps { display: grid; gap: 14px; }
.vv-walk-step {
  padding: 22px; border-radius: 18px;
  background: #fff; border: 1px solid var(--light-line);
  cursor: pointer; transition: 220ms;
  display: grid; grid-template-columns: 56px 1fr auto; gap: 16px;
  align-items: start;
}
.vv-walk-step:hover { border-color: var(--cyan); }
.vv-walk-step.active {
  background: var(--navy); color: #fff;
  border-color: var(--cyan);
}
.vv-walk-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600;
  color: var(--cyan-deep); line-height: 1;
}
.vv-walk-step.active .vv-walk-step-num { color: var(--cyan); }
.vv-walk-step-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--navy);
  margin-bottom: 4px; line-height: 1.2;
}
.vv-walk-step.active .vv-walk-step-h { color: #fff; }
.vv-walk-step-p {
  font-size: 13px; line-height: 1.55; color: var(--light-ink-2);
}
.vv-walk-step.active .vv-walk-step-p { color: rgba(255,255,255,0.75); }
.vv-walk-step-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--light-ink-3);
  white-space: nowrap;
}
.vv-walk-step.active .vv-walk-step-time { color: var(--cyan); }

/* ========== RECOVERY TIMELINE ========== */
.vv-recovery {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 12px;
}
.vv-recovery-step {
  min-width: 240px; flex: 1;
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 20px; padding: 24px;
  position: relative;
}
.vv-recovery-step::after {
  content: ''; position: absolute;
  top: 50%; right: -12px;
  width: 16px; height: 2px;
  background: var(--cyan);
  transform: translateY(-50%);
}
.vv-recovery-step:last-child::after { display: none; }
.vv-recovery-time {
  display: inline-flex; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--cyan-deep);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 10px;
}
.vv-recovery-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px; line-height: 1.2;
}
.vv-recovery-p {
  font-size: 12.5px; line-height: 1.55; color: var(--light-ink-2);
}
.vv-recovery-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--navy); display: grid; place-items: center;
  margin-bottom: 14px;
}
.vv-recovery-icon svg { width: 18px; height: 18px; }

/* ========== PRICING ========== */
.vv-pricing {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.vv-price-card {
  background: linear-gradient(165deg, #fff 0%, var(--light-bg-tint) 100%);
  border: 1px solid var(--light-line);
  border-radius: 28px; padding: 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(14,47,107,0.08);
}
.vv-price-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(31,195,199,0.15), transparent 70%);
  filter: blur(30px);
}
.vv-price-card.featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: var(--cyan);
}
.vv-price-card.featured::before {
  background: radial-gradient(circle, rgba(31,195,199,0.5), transparent 70%);
}
.vv-price-card > * { position: relative; z-index: 1; }

.vv-price-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 14px;
  background: rgba(31,195,199,0.15); color: var(--cyan-deep);
  border: 1px solid rgba(31,195,199,0.3);
}
.vv-price-card.featured .vv-price-tag {
  background: rgba(244,185,66,0.2); color: var(--gold);
  border-color: rgba(244,185,66,0.4);
}
.vv-price-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; line-height: 1.15;
  color: var(--navy); margin-bottom: 4px;
}
.vv-price-card.featured .vv-price-h { color: #fff; }
.vv-price-sub { font-size: 13px; color: var(--light-ink-3); margin-bottom: 18px; }
.vv-price-card.featured .vv-price-sub { color: rgba(255,255,255,0.6); }

.vv-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.03em; line-height: 1;
  margin: 8px 0;
}
.vv-price-card.featured .vv-price-amount { color: var(--cyan); }
.vv-price-amount span { font-size: 22px; opacity: 0.6; }
.vv-price-emi {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--cyan-deep); font-weight: 600;
  margin-bottom: 22px;
}
.vv-price-card.featured .vv-price-emi { color: var(--gold); }

.vv-price-list { list-style: none; padding: 0; margin: 0 0 24px; }
.vv-price-list li {
  display: flex; align-items: start; gap: 10px;
  padding: 8px 0; font-size: 13.5px; line-height: 1.5;
  color: var(--light-ink); border-bottom: 1px solid var(--light-line);
}
.vv-price-list li:last-child { border-bottom: none; }
.vv-price-card.featured .vv-price-list li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.vv-price-list li svg { width: 16px; height: 16px; color: var(--cyan-deep); flex-shrink: 0; margin-top: 2px; }
.vv-price-card.featured .vv-price-list li svg { color: var(--cyan); }

.vv-price-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  width: 100%; justify-content: center;
  padding: 14px 22px; border-radius: 100px;
  background: var(--wa); color: #fff;
  font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: 200ms;
}
.vv-price-cta-wa:hover { background: #1ebe5a; transform: translateY(-1px); }

/* Price factors */
.vv-price-factors {
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 24px; padding: 32px; margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 22px;
}
.vv-factor-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.vv-factor-p { font-size: 12px; color: var(--light-ink-2); line-height: 1.5; }
.vv-factor-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(31,195,199,0.15), rgba(14,47,107,0.05));
  color: var(--cyan-deep);
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.vv-factor-icon svg { width: 16px; height: 16px; }

/* EMI calculator */
.vv-emi {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 24px; padding: 32px; margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
  position: relative; overflow: hidden;
}
.vv-emi::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,195,199,0.3), transparent 70%);
  filter: blur(40px);
}
.vv-emi > * { position: relative; z-index: 1; }
.vv-emi-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; margin-bottom: 8px; line-height: 1.15;
}
.vv-emi-sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.vv-emi-slider-row {
  display: grid; gap: 16px; margin-bottom: 18px;
}
.vv-emi-slider-label {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.vv-emi-slider-label b { color: #fff; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.vv-emi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 100px;
  background: rgba(255,255,255,0.15); outline: none;
}
.vv-emi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cyan); cursor: pointer;
  box-shadow: 0 0 0 4px rgba(31,195,199,0.2);
}
.vv-emi-tenure { display: flex; gap: 8px; flex-wrap: wrap; }
.vv-emi-tenure-pill {
  padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 12px; font-weight: 600; cursor: pointer;
}
.vv-emi-tenure-pill.active {
  background: var(--cyan); color: var(--navy); border-color: var(--cyan);
}

.vv-emi-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px; text-align: center;
  backdrop-filter: blur(10px);
}
.vv-emi-result-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 8px;
}
.vv-emi-result-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 600;
  color: var(--cyan); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 6px;
}
.vv-emi-result-amount span { font-size: 22px; opacity: 0.7; }
.vv-emi-result-period { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.vv-emi-result-savings {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(244,185,66,0.15); border: 1px solid rgba(244,185,66,0.3);
  color: var(--gold); font-size: 11px; font-weight: 700;
}
.vv-emi-partners {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px;
  justify-content: center;
}
.vv-emi-partner {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.6);
  padding: 6px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
}

/* ========== VIDEO TESTIMONIALS ========== */
.vv-videos { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 18px; }
.vv-video {
  position: relative;
  border-radius: 22px; overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--light-line);
}
.vv-video.feat { aspect-ratio: 4 / 5.4; grid-row: span 2; }
.vv-video-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.vv-video::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.vv-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  z-index: 2;
  transition: 220ms;
}
.vv-video:hover .vv-video-play { transform: translate(-50%,-50%) scale(1.1); background: var(--cyan); }
.vv-video-play svg { width: 22px; height: 22px; color: var(--navy); margin-left: 2px; }
.vv-video-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  color: #fff; padding: 4px 10px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
}
.vv-video-duration {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  color: #fff; padding: 4px 8px; border-radius: 6px;
  font-size: 11px; font-family: 'JetBrains Mono', monospace; font-weight: 600;
  z-index: 2;
}
.vv-video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px; color: #fff; z-index: 2;
}
.vv-video.feat .vv-video-caption { padding: 22px; }
.vv-video-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; line-height: 1.2;
  margin-bottom: 4px;
}
.vv-video.feat .vv-video-name { font-size: 24px; }
.vv-video-meta { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ========== BEFORE / AFTER ========== */
.vv-ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vv-ba {
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 22px; overflow: hidden;
  transition: 220ms;
}
.vv-ba:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(14,47,107,0.1); }
.vv-ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--light-line); }
.vv-ba-img {
  aspect-ratio: 1 / 1.1;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.vv-ba-img-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  padding: 3px 8px; border-radius: 100px;
}
.vv-ba-img.before { background: linear-gradient(165deg, #ffe5d4, #ffcdb8); }
.vv-ba-img.before .vv-ba-img-tag { background: #c43e6a; color: #fff; }
.vv-ba-img.after { background: linear-gradient(165deg, #d4f4f5, #b0e8ea); }
.vv-ba-img.after .vv-ba-img-tag { background: var(--cyan-deep); color: #fff; }
.vv-ba-body { padding: 18px; }
.vv-ba-pat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 4px;
}
.vv-ba-meta { font-size: 12px; color: var(--light-ink-3); margin-bottom: 8px; }
.vv-ba-cond {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan-deep); font-weight: 700;
}

/* ========== FAQ ========== */
.vv-faq-list { display: grid; gap: 8px; }
.vv-faq-item {
  background: #fff; border: 1px solid var(--light-line);
  border-radius: 16px; overflow: hidden;
  transition: 220ms;
}
.vv-faq-item.open { border-color: var(--cyan); box-shadow: 0 12px 30px rgba(14,47,107,0.06); }
.vv-faq-q {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.005em; line-height: 1.25;
  cursor: pointer;
}
.vv-faq-toggle {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--light-bg-tint); color: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
  transition: 250ms;
}
.vv-faq-item.open .vv-faq-toggle { background: var(--cyan); color: var(--navy); transform: rotate(45deg); }
.vv-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 350ms ease-out;
}
.vv-faq-item.open .vv-faq-a { max-height: 500px; }
.vv-faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14px; line-height: 1.65; color: var(--light-ink-2);
}
.vv-faq-a-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  padding: 8px 14px; border-radius: 100px;
  background: rgba(37,211,102,0.1); color: var(--wa-deep);
  font-size: 12px; font-weight: 700; cursor: pointer;
  text-decoration: none;
}
.vv-faq-a-cta:hover { background: rgba(37,211,102,0.2); }

/* ========== STICKY MOBILE / FLOATING ========== */
.vv-sticky-bar {
  position: fixed; bottom: 18px; right: 18px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100;
}
.vv-sticky-wa {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  display: grid; place-items: center;
  cursor: pointer; transition: 220ms;
  position: relative;
  text-decoration: none;
}
.vv-sticky-wa::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  background: var(--wa); opacity: 0.4; z-index: -1;
  animation: vv-wa-pulse 2s ease-out infinite;
}
.vv-sticky-wa:hover { transform: scale(1.05); }
.vv-sticky-wa svg { width: 28px; height: 28px; color: #fff; }
.vv-sticky-call {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(14,47,107,0.4);
  display: grid; place-items: center;
  cursor: pointer; transition: 220ms;
  border: none;
}
.vv-sticky-call:hover { transform: scale(1.05); background: var(--navy-deep); }
.vv-sticky-call svg { width: 22px; height: 22px; color: #fff; }

/* ========== FINAL CTA ========== */
.vv-final {
  background:
    radial-gradient(ellipse at top right, rgba(31,195,199,0.18) 0%, transparent 50%),
    linear-gradient(180deg, #0a1838 0%, #0E2F6B 100%);
  color: #fff;
  padding: 80px 0;
}
.vv-final-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 40px;
  text-align: center;
}
.vv-final-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 600; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 14px;
}
.vv-final-h i { color: var(--cyan); }
.vv-final-hi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 22px; color: rgba(255,255,255,0.85);
  margin-bottom: 18px; font-weight: 500;
}
.vv-final-lede {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.78);
  max-width: 640px; margin: 0 auto 32px;
}
.vv-final-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.vv-final-trust {
  margin-top: 36px; display: flex; gap: 28px;
  justify-content: center; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,0.6);
}
.vv-final-trust span { display: inline-flex; align-items: center; gap: 6px; }
.vv-final-trust svg { width: 14px; height: 14px; color: var(--cyan); }
