/* ==========================================================================
   Dynamic Career Pathways — Homepage (dark navy / electric blue design)
   Scoped under body.home-v2 so login/dashboard/admin pages are untouched.
   ========================================================================== */

body.home-v2 {
  --hv-bg: #05060d;
  --hv-bg-soft: #0a0c18;
  --hv-panel: #0e1120;
  --hv-panel-2: #10132400;
  --hv-border: rgba(255,255,255,0.09);
  --hv-border-soft: rgba(255,255,255,0.06);
  --hv-text: #f4f5f9;
  --hv-text-muted: rgba(244,245,249,0.68);
  --hv-text-faint: rgba(244,245,249,0.45);
  --hv-blue: #2f6fed;
  --hv-blue-2: #123f9e;
  --hv-blue-light: #8fb8ff;
  --hv-blue-glow: rgba(47,111,237,0.35);
  background: var(--hv-bg);
  color: var(--hv-text);
}

body.home-v2 p { color: var(--hv-text-muted); }
body.home-v2 h1, body.home-v2 h2, body.home-v2 h3, body.home-v2 h4 { color: var(--hv-text); }
body.home-v2 a { color: inherit; }
body.home-v2 section { padding: 88px 0; }
body.home-v2 .hv-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.hv-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(5,6,13,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hv-border-soft);
}
.hv-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.hv-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.hv-brand-mark { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.hv-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.hv-brand-text strong { font-family: var(--font-display); font-size: 17px; letter-spacing: 0.02em; color: var(--hv-text); }
.hv-brand-text span { font-size: 9px; letter-spacing: 0.18em; color: var(--hv-text-faint); font-weight: 600; }

.hv-nav-links { display: flex; align-items: center; gap: 28px; }
.hv-nav-links a {
  font-size: 14px; font-weight: 600; text-decoration: none;
  color: var(--hv-text-muted); padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.hv-nav-links a:hover, .hv-nav-links a.active { color: var(--hv-text); border-color: var(--hv-blue); }

.hv-nav-actions { display: flex; align-items: center; gap: 14px; }
.hv-login-link { font-size: 14px; font-weight: 600; color: var(--hv-text-muted); text-decoration: none; }
.hv-login-link:hover { color: var(--hv-text); }
.hv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hv-btn-primary { background: linear-gradient(135deg, var(--hv-blue), var(--hv-blue-2)); color: #fff; }
.hv-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px var(--hv-blue-glow); }
.hv-btn-ghost { background: transparent; border: 1px solid var(--hv-border); color: var(--hv-text); }
.hv-btn-ghost:hover { background: rgba(255,255,255,0.06); }
.hv-icon-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--hv-border);
  background: transparent; color: var(--hv-text-muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.hv-icon-btn:hover { color: var(--hv-text); border-color: var(--hv-blue); }

@media (max-width: 980px) {
  .hv-nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hv-hero { padding: 56px 0 40px; overflow: hidden; }
.hv-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .hv-hero-grid { grid-template-columns: 1fr; } }

.hv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,111,237,0.10); border: 1px solid rgba(47,111,237,0.35);
  color: var(--hv-blue-light); font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hv-hero h1 { font-size: 56px; line-height: 1.06; margin-bottom: 20px; letter-spacing: -0.01em; }
.hv-hero h1 .blue { color: var(--hv-blue-light); }
.hv-hero-lede { font-size: 17px; max-width: 520px; margin-bottom: 28px; }

.hv-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--hv-panel); border: 1px solid var(--hv-border);
  border-radius: 999px; padding: 6px; max-width: 540px; margin-bottom: 26px;
}
.hv-search svg { flex-shrink: 0; margin-left: 10px; color: var(--hv-text-faint); }
.hv-search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--hv-text); font-size: 15px; font-family: var(--font-body); padding: 10px 0;
}
.hv-search input::placeholder { color: var(--hv-text-faint); }
.hv-search button { flex-shrink: 0; }

.hv-checks { display: flex; flex-wrap: wrap; gap: 20px 26px; }
.hv-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hv-text-muted); font-weight: 500; }
.hv-check svg { color: var(--hv-blue-light); flex-shrink: 0; }

/* Hero visual */
.hv-visual { position: relative; border-radius: 26px; overflow: hidden; min-height: 480px;
  border: 1px solid var(--hv-border);
  background: linear-gradient(160deg, #060a1c 0%, #081638 30%, #0b2a63 55%, #0a1c44 75%, #05060d 100%);
  display: flex; align-items: center; justify-content: center;
}
.hv-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; mix-blend-mode: screen; position: absolute; inset: 0; }
.hv-visual-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,13,0.05) 0%, rgba(5,6,13,0.65) 100%); pointer-events: none; }
.hv-visual-logo {
  position: relative; z-index: 1; width: 62%; max-width: 340px; filter: drop-shadow(0 0 46px rgba(47,111,237,0.55));
  animation: hv-float 6s ease-in-out infinite;
}
.hv-visual-streak {
  position: absolute; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(143,184,255,0) 0%, rgba(143,184,255,0.85) 50%, rgba(143,184,255,0) 100%);
  filter: blur(0.5px); opacity: 0.8;
}
.hv-visual-streak.s1 { width: 70%; bottom: 14%; left: -10%; transform: rotate(-8deg); animation: hv-streak 3.2s ease-in-out infinite; }
.hv-visual-streak.s2 { width: 55%; bottom: 24%; left: -5%; transform: rotate(-8deg); animation: hv-streak 3.2s ease-in-out infinite 1.1s; opacity: 0.5; }
@keyframes hv-streak { 0% { opacity: 0; transform: translateX(-40px) rotate(-8deg); } 50% { opacity: 0.85; } 100% { opacity: 0; transform: translateX(60px) rotate(-8deg); } }

.hv-float-card {
  position: absolute; top: 22px; right: 22px; width: 210px;
  background: rgba(10,12,24,0.72); backdrop-filter: blur(8px);
  border: 1px solid var(--hv-border); border-radius: 16px; padding: 16px;
  animation: hv-rise 0.6s ease both;
}
.hv-float-card .hv-brand-mark { width: 30px; height: 30px; margin-bottom: 6px; }
.hv-float-card strong { display: block; font-family: var(--font-display); font-size: 13px; }
.hv-float-card span.tag { display: block; font-size: 8px; letter-spacing: 0.16em; color: var(--hv-text-faint); margin-bottom: 10px; }
.hv-float-card p { font-size: 12px; line-height: 1.5; margin: 0; color: var(--hv-text-muted); }

.hv-badge-dot {
  position: absolute; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(47,111,237,0.18); border: 1px solid rgba(47,111,237,0.5);
  display: flex; align-items: center; justify-content: center; color: var(--hv-blue-light);
  box-shadow: 0 0 24px rgba(47,111,237,0.35);
  animation: hv-float 4s ease-in-out infinite;
}
.hv-badge-1 { top: 40%; right: 28%; animation-delay: 0s; }
.hv-badge-2 { top: 55%; right: 50%; animation-delay: 1.1s; }
.hv-badge-3 { bottom: 16%; right: 62%; animation-delay: 2.2s; }

@keyframes hv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes hv-rise { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Section headings ---------- */
.hv-eyebrow-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.hv-section-title { font-size: 30px; margin: 0; }
.hv-view-all { font-size: 14px; font-weight: 700; color: var(--hv-blue-light); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.hv-view-all:hover { color: var(--hv-text); }

/* ---------- Feature cards ---------- */
.hv-feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 980px) { .hv-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hv-feature-grid { grid-template-columns: 1fr; } }

.hv-card {
  display: block; text-decoration: none; background: var(--hv-panel);
  border: 1px solid var(--hv-border); border-radius: 18px; padding: 22px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}
.hv-card:hover { transform: translateY(-4px); border-color: rgba(47,111,237,0.5); background: #12162a; }
.hv-card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--hv-blue), var(--hv-blue-2)); color: #fff; margin-bottom: 16px;
}
.hv-card h3 { font-size: 16px; margin-bottom: 6px; }
.hv-card p { font-size: 13px; margin-bottom: 10px; }
.hv-card-arrow { color: var(--hv-blue-light); }

/* ---------- Category cards ---------- */
.hv-category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 980px) { .hv-category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .hv-category-grid { grid-template-columns: repeat(2, 1fr); } }

.hv-cat-card { text-decoration: none; display: block; }
.hv-cat-media {
  position: relative; height: 120px; border-radius: 16px; overflow: hidden; margin-bottom: 12px;
  background: linear-gradient(150deg, #1b1236, #2a1a44 45%, #150e29);
  border: 1px solid var(--hv-border);
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.hv-cat-icon {
  width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--hv-blue), var(--hv-blue-2));
  color: #fff; display: flex; align-items: center; justify-content: center; margin: 10px;
}
.hv-cat-card h3 { font-size: 15px; margin-bottom: 2px; }
.hv-cat-card p { font-size: 12px; margin: 0; color: var(--hv-text-faint); }

/* ---------- Stats ---------- */
.hv-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--hv-panel); border: 1px solid var(--hv-border); border-radius: 20px; padding: 30px 10px;
}
@media (max-width: 760px) { .hv-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.hv-stat { display: flex; align-items: center; gap: 14px; padding: 0 20px; border-right: 1px solid var(--hv-border-soft); }
.hv-stat:last-child { border-right: none; }
@media (max-width: 760px) { .hv-stat { border-right: none; } }
.hv-stat-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(47,111,237,0.15); color: var(--hv-blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hv-stat strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--hv-text); }
.hv-stat span { font-size: 13px; color: var(--hv-text-faint); }

/* ---------- CTA / preview ---------- */
.hv-cta {
  background: linear-gradient(120deg, #140c2b, #1c1140 60%, #0c0a1c);
  border: 1px solid var(--hv-border); border-radius: 26px; padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 900px) { .hv-cta { grid-template-columns: 1fr; padding: 32px; } }
.hv-cta h2 { font-size: 30px; margin-bottom: 14px; }
.hv-cta-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.hv-preview {
  background: rgba(10,12,24,0.6); border: 1px solid var(--hv-border); border-radius: 18px; padding: 20px;
}
.hv-preview-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hv-preview-head strong { font-size: 15px; }
.hv-preview-head p { font-size: 12px; margin: 2px 0 0; }
.hv-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hv-preview-tile { background: rgba(255,255,255,0.03); border: 1px solid var(--hv-border-soft); border-radius: 12px; padding: 12px; }
.hv-preview-tile .lbl { font-size: 10px; color: var(--hv-text-faint); margin-bottom: 4px; }
.hv-preview-tile .val { font-size: 13px; font-weight: 700; color: var(--hv-text); }
.hv-preview-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin-top: 8px; }
.hv-preview-bar-fill { height: 100%; width: 79%; background: linear-gradient(90deg, var(--hv-blue), var(--hv-blue-light)); }

/* ---------- Trusted by ---------- */
.hv-trusted { padding: 40px 0 70px; text-align: center; }
.hv-trusted p.lbl { font-size: 13px; color: var(--hv-text-faint); margin-bottom: 20px; }
.hv-trusted-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; opacity: 0.6; }
.hv-trusted-row span { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--hv-text-muted); }

/* ---------- How it works (dark restyle) ---------- */
.hv-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 760px) { .hv-steps { grid-template-columns: 1fr 1fr; } }
.hv-step { background: var(--hv-panel); border: 1px solid var(--hv-border); border-radius: 16px; padding: 20px; text-decoration: none; display: block; transition: transform .18s ease, border-color .18s ease; }
.hv-step:hover { transform: translateY(-4px); border-color: rgba(47,111,237,0.5); }
.hv-step h3 { font-size: 16px; }
.hv-step p { font-size: 13px; margin: 0; }

/* ---------- About ---------- */
.hv-about { max-width: 720px; }
.hv-about p { font-size: 16px; }

/* ---------- Request form section (dark restyle) ---------- */
.hv-pricing-card {
  background: var(--hv-panel); border: 1px solid var(--hv-border); border-radius: 18px; padding: 24px 22px;
  text-decoration: none; display: block; transition: transform .18s ease, border-color .18s ease;
}
.hv-pricing-card:hover { transform: translateY(-4px); border-color: rgba(47,111,237,0.5); }
.hv-pricing-card .price { font-size: 26px; font-family: var(--font-display); color: var(--hv-text); }
body.home-v2 #pricing.hv-form-section .card {
  background: var(--hv-panel); border: 1px solid var(--hv-border); box-shadow: none;
}
body.home-v2 #pricing.hv-form-section .card h3 { color: var(--hv-text); }
body.home-v2 #pricing.hv-form-section .field label { color: var(--hv-text-muted); }
body.home-v2 #pricing.hv-form-section .field input,
body.home-v2 #pricing.hv-form-section .field select,
body.home-v2 #pricing.hv-form-section .field textarea {
  background: rgba(255,255,255,0.03); border-color: var(--hv-border); color: var(--hv-text);
}
body.home-v2 #pricing.hv-form-section .field input::placeholder,
body.home-v2 #pricing.hv-form-section .field textarea::placeholder { color: var(--hv-text-faint); }

/* ---------- Footer (dark restyle) ---------- */
.hv-footer { background: var(--hv-bg-soft); border-top: 1px solid var(--hv-border-soft); padding: 44px 0 28px; }
.hv-footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 26px; }
.hv-footer-col h4 { font-size: 13px; color: var(--hv-text); margin-bottom: 12px; }
.hv-footer-col a { display: block; font-size: 13px; color: var(--hv-text-muted); text-decoration: none; margin-bottom: 8px; }
.hv-footer-col a:hover { color: var(--hv-text); }
.hv-footer-bottom { border-top: 1px solid var(--hv-border-soft); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--hv-text-faint); }

/* ---------- Hero price badge + trust row (matches brand reference) ---------- */
.hv-hero-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hv-price-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
  background: #05060d; border: 1px solid var(--hv-border); border-radius: 14px; padding: 8px 16px;
}
.hv-price-badge .only { font-size: 10px; letter-spacing: 0.08em; color: var(--hv-text-faint); margin-bottom: 3px; }
.hv-price-badge .amount { font-family: var(--font-display); font-size: 20px; color: var(--hv-text); }
.hv-price-badge .amount sup { font-size: 11px; color: var(--hv-text-faint); font-weight: 600; margin-left: 2px; }

/* ---------- Simple centered-icon feature grid ("Your Future. Your Choice.") ---------- */
.hv-simple-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
@media (max-width: 900px) { .hv-simple-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hv-simple-grid { grid-template-columns: 1fr; } }
.hv-simple-feature { padding: 6px 10px; }
.hv-simple-icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  background: rgba(47,111,237,0.12); border: 1px solid rgba(47,111,237,0.35); color: var(--hv-blue-light);
}
.hv-simple-feature h3 { font-size: 16px; margin-bottom: 8px; }
.hv-simple-feature p { font-size: 13.5px; margin: 0; }

/* ---------- How it works v2: bordered cards with icons + overlapping badge ---------- */
.hv-how-section { background: var(--hv-bg); }
.hv-how-title-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 46px; }
.hv-title-dash { width: 46px; height: 2px; background: linear-gradient(90deg, rgba(47,111,237,0), var(--hv-blue)); border-radius: 999px; }
.hv-how-title-row .hv-title-dash:last-child { background: linear-gradient(90deg, var(--hv-blue), rgba(47,111,237,0)); }
.hv-how-title-row .hv-section-title { margin: 0; }
@media (max-width: 560px) { .hv-title-dash { display: none; } }

.hv-steps-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .hv-steps-v2 { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px) { .hv-steps-v2 { grid-template-columns: 1fr; } }
.hv-step-arrow { display: none; }
@media (min-width: 901px) {
  .hv-steps-v2 { grid-template-columns: repeat(11, 1fr); }
  .hv-step-arrow { display: flex; align-items: center; justify-content: center; color: var(--hv-blue-light); flex-shrink: 0; }
  .hv-step-v2-wrap { grid-column: span 2; }
  .hv-step-arrow { grid-column: span 1; }
}
.hv-step-v2-wrap { display: flex; align-items: stretch; }
.hv-step-v2 {
  flex: 1; background: var(--hv-panel); border: 1px solid var(--hv-border); border-radius: 16px;
  padding: 30px 18px 22px; text-align: center; position: relative; transition: transform .18s ease, border-color .18s ease;
}
.hv-step-v2:hover { transform: translateY(-4px); border-color: rgba(47,111,237,0.5); }
.hv-step-v2-num {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--hv-blue), var(--hv-blue-2)); color: #fff; font-weight: 700; font-size: 14px;
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  border: 3px solid var(--hv-bg); box-shadow: 0 4px 12px -2px var(--hv-blue-glow);
}
.hv-step-v2-icon {
  width: 52px; height: 52px; margin: 14px auto 16px; display: flex; align-items: center; justify-content: center;
  color: var(--hv-blue-light);
}
.hv-step-v2 h3 { font-size: 14.5px; margin-bottom: 8px; letter-spacing: 0.01em; text-transform: uppercase; color: var(--hv-blue-light); }
.hv-step-v2 p { font-size: 13px; margin: 0; }

/* ---------- CTA banner v2 (simple split banner) ---------- */
.hv-cta-banner {
  background: linear-gradient(120deg, #0a1636, #123a86 60%, #081029);
  border: 1px solid var(--hv-border); border-radius: 22px; padding: 34px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.hv-cta-banner h2 { font-size: 22px; margin-bottom: 6px; }
.hv-cta-banner p { font-size: 14px; margin: 0; color: rgba(244,245,249,0.8); }
.hv-cta-banner-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.hv-cta-banner-actions .hv-btn-primary { background: #fff; color: var(--hv-blue-2); }
.hv-cta-banner-actions .hv-btn-primary:hover { box-shadow: 0 10px 24px -8px rgba(255,255,255,0.35); }
.hv-cta-banner-actions .price-note { font-size: 12px; color: var(--hv-blue-light); font-weight: 700; }
@media (max-width: 700px) { .hv-cta-banner-actions { align-items: flex-start; } }

/* ---------- Career discovery questions ---------- */
.hv-discover-fields { display: grid; gap: 18px; margin-bottom: 6px; }
.hv-discover-fields .field label { display: flex; align-items: baseline; gap: 8px; }
.hv-discover-fields .field label .q-num {
  display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(47,111,237,0.16); color: var(--hv-blue-light); font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* ---------- Footer socials ---------- */
.hv-footer-social-row { display: flex; gap: 10px; margin-top: 4px; }
.hv-social-icon {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--hv-border);
  display: flex; align-items: center; justify-content: center; color: var(--hv-text-muted);
  text-decoration: none; transition: border-color .15s ease, color .15s ease;
}
.hv-social-icon:hover { color: var(--hv-text); border-color: var(--hv-blue); }
