﻿/* ============================================================
   NEXTFINANCE Custom Override CSS
   Completely new visual identity: premium fintech palette: navy + electric blue + finance green
   Fonts: Space Grotesk (headings) + Manrope (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --nf-primary-dark:     #031D4A;
  --nf-ink:    #0A234A;
  --nf-primary:     #063B82;
  --nf-secondary:     #0B7DE9;
  --nf-secondary-soft:    #DCEEFF;
  --nf-green:     #C7A56A;
  --nf-green-bright:    #E9D7A6;
  --nf-shadow-soft:    0 16px 36px rgba(3, 29, 74, 0.14);
  --nf-surface:    #F6F9FC;
  --nf-white:    #ffffff;
  --nf-text:     #142033;
  --nf-border:   #D9E4F0;
  --nf-radius:   16px;
  --nf-shadow:   0 18px 48px rgba(3, 29, 74, 0.10);
  --nf-trans:    all 0.28s ease;
}

/* ---- RESET BODY FONTS ---- */
body { font-family: 'Manrope', sans-serif; color: var(--nf-text); }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; color: var(--nf-primary-dark); }

/* ============================================================
   NAVBAR
   ============================================================ */
.ve-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(3, 29, 74, 0.95), rgba(5, 34, 82, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(3, 29, 74, 0.22);
  transition: var(--nf-trans);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ve-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 40%, rgba(11,125,233,0.09) 100%);
  pointer-events: none;
}
.ve-header.scrolled {
  background: rgba(3, 29, 74, 0.98);
  box-shadow: 0 18px 46px rgba(3, 29, 74, 0.28);
}
.ve-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  min-height: 78px;
  height: auto;
  position: relative;
  z-index: 1;
  gap: 18px;
}
/* Logo */
.ve-logo a {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.ve-brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(11,125,233,0.12));
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.ve-logo-icon {
  width:38px; height:38px;
  background: var(--nf-secondary);
  color: var(--nf-primary-dark);
  border-radius: 8px;
  display:flex; align-items:center; justify-content:center;
  font-family:'Nunito',sans-serif; font-weight:900; font-size:20px;
}
.ve-logo-text { font-family:'Nunito',sans-serif; font-size:20px; color:#fff; font-weight:600; }
.ve-logo-text strong { color: var(--nf-secondary); font-weight:900; }

/* Nav links */
.ve-nav ul { list-style:none; margin:0; padding:0; display:flex; gap:10px; }
.ve-nav ul li { position:relative; }
.ve-nav ul li a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  color:rgba(255,255,255,0.82);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border-radius:999px;
  border:1px solid transparent;
  background: rgba(255,255,255,0.02);
  transition:var(--nf-trans);
  letter-spacing:0.01em;
}
.ve-nav ul li a:hover,
.ve-nav ul li a.active {
  color:#fff;
  background:rgba(11,125,233,0.14);
  border-color:rgba(11,125,233,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.ve-nav ul li a.active {
  color:#fff;
  background:linear-gradient(135deg, rgba(11,125,233,0.28), rgba(255,255,255,0.06));
}

/* Dropdown */
.ve-nav .has-drop:hover .ve-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.ve-dropdown {
  position:absolute; top:100%; left:0; min-width:200px;
  background: var(--nf-ink); border-radius:10px;
  padding:10px 0; opacity:0; visibility:hidden;
  transform:translateY(10px); transition:var(--nf-trans);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-dropdown li a { padding:10px 20px; border-radius:0; color:rgba(255,255,255,0.7); font-size:13px; }
.ve-dropdown li a:hover { color:#fff; background:rgba(11,125,233,0.12); }

/* CTA button */
.ve-nav-cta {
  display:flex;
  align-items:center;
  gap:12px;
}
.ve-nav-cta .ve-cta-btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: linear-gradient(135deg, var(--nf-secondary), #4FA7FF);
  color: var(--nf-white);
  padding:12px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition:var(--nf-trans);
  box-shadow: 0 14px 30px rgba(11, 125, 233, 0.24);
}
.ve-cta-btn:hover {
  color:var(--nf-white);
  background: linear-gradient(135deg, #4FA7FF, #79C0FF);
  transform:translateY(-1px);
  box-shadow: 0 18px 34px rgba(11, 125, 233, 0.32);
}
.ve-admin-link {
  display:inline-flex;
  align-items:center;
  padding:11px 16px;
  color:rgba(255,255,255,0.9);
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.03);
  transition:var(--nf-trans);
}
.ve-admin-link:hover {
  color:#fff;
  border-color:rgba(255,255,255,0.28);
  background:rgba(255,255,255,0.08);
  transform:translateY(-1px);
}

/* Mobile toggle */
.ve-toggler {
  display:none;
  flex-direction:column;
  gap:5px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  cursor:pointer;
  padding:9px 10px;
  border-radius:12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.ve-toggler span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:var(--nf-trans); }

/* Mobile menu */
.ve-mobile-menu {
  display:none;
  background: linear-gradient(180deg, rgba(3, 29, 74, 0.98), rgba(10, 35, 74, 0.98));
  padding:16px 20px;
  border-top:1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.ve-mobile-menu.open { display:block; }
.ve-mobile-menu ul { list-style:none; margin:0; padding:0; }
.ve-mobile-menu ul li a {
  display:block;
  padding:12px 14px;
  color:rgba(255,255,255,0.82);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.05);
  border-radius:12px;
  transition:var(--nf-trans);
}
.ve-mobile-menu ul li a:hover {
  background:rgba(11,125,233,0.12);
  color:#fff;
}

/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
  display:flex;
  min-height:31.9rem;
  height:31.9rem;
  padding-top:72px;
  background:var(--nf-primary-dark);
  overflow:hidden;
}
.ve-hero-left {
  flex:0 0 55%; padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; z-index:2;
}
.ve-hero-badge {
  display:inline-block; background:rgba(11,125,233,0.15);
  color:var(--nf-secondary); border:1px solid rgba(11,125,233,0.3);
  border-radius:50px; padding:6px 18px; font-size:13px; font-weight:600;
  margin-bottom:28px; letter-spacing:0.5px;
}
.ve-hero-left h1 {
  font-size:62px; line-height:1.1; color:#fff; font-weight:900;
  margin-bottom:22px;
}
.ve-hero-left h1 .ve-highlight { color:var(--nf-secondary); }
.ve-hero-left p { font-size:17px; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:40px; max-width:480px; }

/* Hero buttons */
.ve-hero-btns { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }
.ve-btn-primary {
  display:inline-block; background:var(--nf-secondary); color:var(--nf-primary-dark);
  padding:14px 32px; border-radius:8px; font-weight:700; font-size:15px;
  text-decoration:none; transition:var(--nf-trans);
}
.ve-btn-primary:hover { background:var(--nf-secondary-soft); transform:translateY(-2px); box-shadow:0 8px 25px rgba(11,125,233,0.4); color:var(--nf-primary-dark); }
.ve-btn-ghost {
  display:inline-block; border:2px solid rgba(255,255,255,0.25);
  color:#fff; padding:12px 30px; border-radius:8px;
  font-weight:600; font-size:15px; text-decoration:none; transition:var(--nf-trans);
}
.ve-btn-ghost:hover { border-color:var(--nf-secondary); color:var(--nf-secondary); background:rgba(11,125,233,0.08); }

/* Hero stats */
.ve-hero-stats { display:flex; align-items:center; gap:24px; }
.ve-stat strong { display:block; font-size:28px; color:#fff; font-family:'Nunito',sans-serif; font-weight:900; }
.ve-stat span { font-size:12px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; }
.ve-stat-divider { width:1px; height:40px; background:rgba(255,255,255,0.15); }

/* Hero right */
.ve-hero-right {
  flex:0 0 45%;
  position:relative;
  overflow:hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.ve-hero-img-main {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.02);
}
.ve-hero-img-main::after { content:''; position:absolute; inset:0; background:linear-gradient(120deg, rgba(3,29,74,0.92) 0%, rgba(3,29,74,0.18) 42%, rgba(3,29,74,0.08) 100%); }
.ve-hero-img-accent {
  position:absolute; bottom:40px; right:40px;
  width:200px; height:140px; border-radius:14px;
  background-size:cover; background-position:center;
  border:1px solid rgba(255,255,255,0.45);
  box-shadow:0 24px 60px rgba(0,0,0,0.42);
  z-index:3;
}
.ve-float-card {
  position:absolute; top:60px; right:60px; z-index:4;
  background:rgba(255,255,255,0.95); border-radius:14px;
  padding:16px 20px; display:flex; align-items:center; gap:14px;
  box-shadow:0 20px 50px rgba(0,0,0,0.35); backdrop-filter:blur(10px);
}
.ve-float-card i { font-size:28px; color:var(--nf-secondary); }
.ve-float-card strong { display:block; font-size:22px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--nf-primary-dark); }
.ve-float-card span { font-size:12px; color:var(--nf-text); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: var(--nf-secondary);
  padding: 14px 0;
  overflow:hidden;
  white-space:nowrap;
}
.ve-trust-inner {
  display:inline-flex; gap:60px;
  animation: ve-marquee 25s linear infinite;
}
.ve-trust-inner span { font-size:13px; font-weight:700; color:var(--nf-primary-dark); display:inline-flex; align-items:center; gap:8px; }
.ve-trust-inner span i { font-size:14px; }
@keyframes ve-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section { padding: 100px 0; }
.ve-section-header { margin-bottom:60px; }
.ve-section-tag {
  display:inline-block; background:rgba(11,125,233,0.1);
  color:var(--nf-secondary); border:1px solid rgba(11,125,233,0.25);
  border-radius:50px; padding:5px 16px; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:1.5px; margin-bottom:14px;
}
.ve-section-header h2 { font-size:42px; font-weight:900; color:var(--nf-primary-dark); margin-bottom:14px; line-height:1.2; }
.ve-section-header h2 span { color:var(--nf-secondary); }
.ve-section-header p { font-size:16px; color:var(--nf-text); max-width:580px; margin:0 auto; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section { background: var(--nf-surface); }
.ve-services-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.ve-service-card {
  background:#fff; border-radius:var(--nf-radius);
  padding:36px 30px; transition:var(--nf-trans);
  border:1px solid var(--nf-border);
  position:relative; overflow:hidden;
}
.ve-service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--nf-secondary), var(--nf-secondary-soft));
  transform:scaleX(0); transform-origin:left; transition:var(--nf-trans);
}
.ve-service-card:hover { transform:translateY(-6px); box-shadow:var(--nf-shadow); }
.ve-service-card:hover::before { transform:scaleX(1); }
.ve-service-icon {
  width:60px; height:60px; background:linear-gradient(135deg, var(--nf-primary-dark), var(--nf-primary));
  border-radius:14px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; font-size:26px; color:var(--nf-secondary);
}
.ve-service-card h4 { font-size:18px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:10px; }
.ve-service-card p { font-size:14px; line-height:1.7; margin-bottom:20px; color:var(--nf-text); }
.ve-card-link { font-size:14px; font-weight:700; color:var(--nf-secondary); text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:var(--nf-trans); }
.ve-card-link:hover { gap:10px; color:var(--nf-primary-dark); }

/* ============================================================
   WHY US
   ============================================================ */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge {
  position:absolute; bottom:0; right:0;
  background: var(--nf-secondary); border-radius:14px; padding:22px 28px;
  text-align:center; min-width:160px;
}
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--nf-primary-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--nf-primary-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }

.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--nf-secondary); }
.ve-whyus-content > p { font-size:15px; line-height:1.8; margin-bottom:32px; }

.ve-checklist { display:flex; flex-direction:column; gap:22px; }
.ve-check-item { display:flex; align-items:flex-start; gap:16px; }
.ve-check-item > i { font-size:22px; color:var(--nf-secondary); margin-top:2px; flex-shrink:0; }
.ve-check-item strong { display:block; font-size:16px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:4px; }
.ve-check-item p { font-size:14px; color:var(--nf-text); margin:0; line-height:1.6; }
.mt-30 { margin-top:30px; }

/* ============================================================
   COUNTERS
   ============================================================ */
.ve-counter-section {
  background: linear-gradient(135deg, var(--nf-primary-dark) 0%, var(--nf-primary) 100%);
  padding:70px 0;
}
.ve-counter-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.ve-counter-item { text-align:center; padding:30px 20px; border-right:1px solid rgba(255,255,255,0.1); }
.ve-counter-item:last-child { border-right:none; }
.ve-counter-item i { font-size:36px; color:var(--nf-secondary); margin-bottom:14px; display:block; }
.ve-counter-item strong { font-size:46px; font-family:'Nunito',sans-serif; font-weight:900; color:#fff; line-height:1; }
.ve-counter-item span { font-size:24px; color:var(--nf-secondary); font-weight:700; }
.ve-counter-item p { font-size:14px; color:rgba(255,255,255,0.55); margin-top:6px; text-transform:uppercase; letter-spacing:1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ve-testimonials-section { background:var(--nf-surface); }
.ve-testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.ve-testi-card {
  background:#fff; border-radius:var(--nf-radius); padding:32px 28px;
  box-shadow:var(--nf-shadow); border:1px solid var(--nf-border); transition:var(--nf-trans);
}
.ve-testi-card:hover { transform:translateY(-4px); }
.ve-testi-stars { font-size:18px; color:var(--nf-secondary); margin-bottom:16px; letter-spacing:2px; }
.ve-testi-card > p { font-size:15px; line-height:1.8; color:var(--nf-text); margin-bottom:24px; font-style:italic; }
.ve-testi-author { display:flex; align-items:center; gap:14px; }
.ve-testi-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-testi-author strong { display:block; font-size:15px; font-weight:800; color:var(--nf-primary-dark); }
.ve-testi-author span { font-size:13px; color:var(--nf-text); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ve-cta-banner { position:relative; padding:90px 0; background-size:cover; background-position:center; }
.ve-cta-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(13,27,42,0.92) 60%, rgba(13,27,42,0.6)); }
.ve-cta-content { position:relative; z-index:2; }
.ve-cta-content h2 { font-size:38px; font-weight:900; color:#fff; margin-bottom:14px; }
.ve-cta-content h2 span { color:var(--nf-secondary); }
.ve-cta-content p { font-size:16px; color:rgba(255,255,255,0.7); }
.ve-btn-white {
  display:inline-block; background:#fff; color:var(--nf-primary-dark);
  padding:16px 34px; border-radius:8px; font-weight:800; font-size:15px;
  text-decoration:none; transition:var(--nf-trans);
}
.ve-btn-white:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); transform:translateY(-2px); }
.text-lg-right { text-align:right; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.ve-insights-section { background:#fff; }
.ve-insight-card { border-radius:var(--nf-radius); overflow:hidden; border:1px solid var(--nf-border); transition:var(--nf-trans); background:#fff; }
.ve-insight-card:hover { transform:translateY(-5px); box-shadow:var(--nf-shadow); }
.ve-insight-img { height:220px; background-size:cover; background-position:center; }
.ve-insight-body { padding:26px; }
.ve-insight-cat { display:inline-block; background:rgba(11,125,233,0.1); color:var(--nf-secondary); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; border-radius:4px; padding:4px 10px; margin-bottom:12px; }
.ve-insight-body h5 a { font-size:17px; font-weight:800; color:var(--nf-primary-dark); text-decoration:none; line-height:1.4; display:block; margin-bottom:10px; }
.ve-insight-body h5 a:hover { color:var(--nf-secondary); }
.ve-insight-body > p { font-size:14px; color:var(--nf-text); line-height:1.7; margin-bottom:16px; }
.ve-insight-meta { display:flex; justify-content:space-between; align-items:center; }
.ve-insight-meta span { font-size:13px; color:#aaa; display:inline-flex; align-items:center; gap:6px; }
.ve-insight-meta a { font-size:13px; font-weight:700; color:var(--nf-secondary); text-decoration:none; display:inline-flex; align-items:center; gap:5px; transition:var(--nf-trans); }
.ve-insight-meta a:hover { gap:10px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ve-newsletter-section { background:linear-gradient(135deg, var(--nf-primary-dark) 0%, var(--nf-primary) 100%); padding:60px 0; }
.ve-newsletter-wrap { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.ve-nl-left { display:flex; align-items:center; gap:20px; }
.ve-nl-left i { font-size:42px; color:var(--nf-secondary); flex-shrink:0; }
.ve-nl-left h3 { font-size:22px; color:#fff; font-weight:900; margin-bottom:4px; }
.ve-nl-left p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; }
.ve-nl-form { display:flex; gap:0; border-radius:8px; overflow:hidden; border:2px solid rgba(11,125,233,0.3); }
.ve-nl-form input { background:rgba(255,255,255,0.08); border:none; padding:14px 20px; color:#fff; font-size:14px; width:300px; outline:none; }
.ve-nl-form input::placeholder { color:rgba(255,255,255,0.4); }
.ve-nl-form button { background:var(--nf-secondary); color:var(--nf-primary-dark); border:none; padding:14px 28px; font-weight:800; font-size:14px; cursor:pointer; transition:var(--nf-trans); }
.ve-nl-form button:hover { background:var(--nf-secondary-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.ve-footer { background:var(--nf-primary-dark); padding:80px 0 0; }
.mb-50 { margin-bottom:50px; }

.ve-footer-brand p { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.8; margin:18px 0 24px; }
.ve-footer-logo { display:inline-flex; align-items:center; gap:10px; text-decoration:none; margin-bottom:14px; }

.ve-social {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.ve-social a {
  min-width:92px;
  min-height:40px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.76);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:var(--nf-trans);
  border:1px solid rgba(255,255,255,0.08);
}
.ve-social a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }

.ve-footer-title { font-size:15px; font-weight:800; color:#fff; margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.08); text-transform:uppercase; letter-spacing:1px; }

.ve-footer-links { list-style:none; margin:0; padding:0; }
.ve-footer-links li { margin-bottom:10px; }
.ve-footer-links li a { font-size:14px; color:rgba(255,255,255,0.5); text-decoration:none; transition:var(--nf-trans); display:inline-flex; align-items:center; gap:6px; }
.ve-footer-links li a::before {
  content:"\203A";
  color:var(--nf-secondary);
  font-size:16px;
  line-height:1;
  flex-shrink:0;
}
.ve-footer-links li a:hover { color:var(--nf-secondary); padding-left:4px; }

.ve-footer-contact { list-style:none; margin:0; padding:0; }
.ve-footer-contact li { font-size:14px; color:rgba(255,255,255,0.5); margin-bottom:12px; display:flex; align-items:flex-start; gap:10px; line-height:1.6; }
.ve-footer-contact li i { color:var(--nf-secondary); margin-top:2px; flex-shrink:0; }

.ve-footer-bottom { background:rgba(0,0,0,0.3); border-top:1px solid rgba(255,255,255,0.06); margin-top:20px; padding:22px 0; }
.ve-footer-bottom-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.ve-footer-bottom-inner p { font-size:13px; color:rgba(255,255,255,0.35); margin:0; }
.ve-footer-bottom-inner ul { list-style:none; margin:0; padding:0; display:flex; gap:20px; }
.ve-footer-bottom-inner ul li a { font-size:13px; color:rgba(255,255,255,0.35); text-decoration:none; transition:var(--nf-trans); }
.ve-footer-bottom-inner ul li a:hover { color:var(--nf-secondary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) {
  .ve-hero-left { padding:70px 40px; }
  .ve-hero-left h1 { font-size:50px; }
  .ve-services-grid { grid-template-columns:repeat(2,1fr); }
  .ve-counter-grid { grid-template-columns:repeat(2,1fr); }
  .ve-testi-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:991px) {
  .ve-hero { flex-direction:column; min-height:auto; height:auto; }
  .ve-hero-left { flex:none; padding:100px 30px 60px; }
  .ve-hero-right { flex:none; height:350px; }
  .ve-nav, .ve-nav-cta { display:none; }
  .ve-toggler { display:flex; }
  .ve-whyus-content { padding-left:0; margin-top:40px; }
  .ve-newsletter-wrap { flex-direction:column; align-items:flex-start; }
  .ve-nl-form { width:100%; }
  .ve-nl-form input { flex:1; width:auto; }
}
@media (max-width:767px) {
  .ve-hero-left h1 { font-size:38px; }
  .ve-services-grid, .ve-testi-grid, .ve-counter-grid { grid-template-columns:1fr; }
  .ve-hero-stats { flex-wrap:wrap; gap:16px; }
  .ve-nav-wrap { padding:0 20px; }
  .ve-footer-bottom-inner { flex-direction:column; text-align:center; }
  .ve-cta-content h2 { font-size:28px; }
  .text-lg-right { text-align:left; margin-top:20px; }
  .ve-counter-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .ve-counter-item:last-child { border-bottom:none; }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area { display:none !important; }

/* Ensure body offset for fixed navbar */
body { padding-top:0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ve-page-hero {
  position:relative; padding:160px 0 90px;
  background-size:cover; background-position:center;
  overflow:hidden;
}
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.6) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:50px; font-weight:900; color:#fff; margin:12px 0 20px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--nf-secondary); }
.ve-breadcrumb { list-style:none; margin:0; padding:0; display:flex; gap:10px; align-items:center; }
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.55); }
.ve-breadcrumb li::after { content:'/'; margin-left:10px; }
.ve-breadcrumb li:last-child::after { display:none; }
.ve-breadcrumb li a { color:var(--nf-secondary); text-decoration:none; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.8); }
.ve-post-meta-hero { display:flex; gap:24px; flex-wrap:wrap; margin-top:10px; }
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.6); display:inline-flex; align-items:center; gap:7px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ve-about-img-stack { position:relative; padding-bottom:60px; padding-right:60px; }
.ve-about-img-1 { height:420px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 {
  position:absolute; bottom:0; right:0; width:220px; height:180px;
  border-radius:14px; background-size:cover; background-position:center;
  border:4px solid var(--nf-secondary); box-shadow:0 15px 40px rgba(0,0,0,0.25);
}
.ve-about-ribbon {
  position:absolute; top:30px; left:-20px;
  background:var(--nf-secondary); border-radius:12px; padding:20px 24px;
  text-align:center; box-shadow:0 10px 30px rgba(11,125,233,0.35);
}
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--nf-primary-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--nf-primary-dark); text-transform:uppercase; letter-spacing:0.8px; }

.ve-about-text { padding-left:50px; }
.ve-about-text h2 { font-size:38px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-about-text h2 span { color:var(--nf-secondary); }
.ve-lead { font-size:17px; color:var(--nf-primary-dark); font-weight:500; margin-bottom:16px; line-height:1.7; }

.ve-about-features { margin:24px 0; display:flex; flex-direction:column; gap:10px; }
.ve-af-item { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--nf-text); }
.ve-af-item i { color:var(--nf-secondary); font-size:14px; }

/* MVV Cards */
.ve-mvv-section { background:var(--nf-primary-dark); padding:80px 0; }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.ve-mvv-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:var(--nf-radius); padding:40px 30px; text-align:center; transition:var(--nf-trans); }
.ve-mvv-card:hover { background:rgba(11,125,233,0.08); border-color:rgba(11,125,233,0.3); }
.ve-mvv-icon { width:64px; height:64px; background:linear-gradient(135deg, rgba(11,125,233,0.2), rgba(11,125,233,0.05)); border:1px solid rgba(11,125,233,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:26px; color:var(--nf-secondary); }
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.8; }

/* Team */
.ve-team-section { background:var(--nf-surface); }
.ve-team-card { background:#fff; border-radius:var(--nf-radius); overflow:hidden; box-shadow:var(--nf-shadow); transition:var(--nf-trans); margin-bottom:30px; }
.ve-team-card:hover { transform:translateY(-5px); }
.ve-team-img { height:280px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px 24px; }
.ve-team-info h5 { font-size:18px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--nf-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; gap:8px; }
.ve-team-social a { width:32px; height:32px; border-radius:6px; background:var(--nf-surface); color:var(--nf-text); display:flex; align-items:center; justify-content:center; font-size:12px; text-decoration:none; transition:var(--nf-trans); }
.ve-team-social a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section { background:var(--nf-primary-dark); padding:90px 0; }
.ve-process-grid { display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:50px; }
.ve-process-step { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:var(--nf-radius); padding:36px 28px; text-align:center; flex:1; min-width:180px; max-width:220px; transition:var(--nf-trans); }
.ve-process-step:hover { background:rgba(11,125,233,0.08); border-color:rgba(11,125,233,0.3); }
.ve-process-num { font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:rgba(11,125,233,0.3); margin-bottom:12px; line-height:1; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-process-step p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:rgba(11,125,233,0.4); flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:var(--nf-surface); }
.ve-faq-list { display:flex; flex-direction:column; gap:12px; }
.ve-faq-item { background:#fff; border-radius:10px; border:1px solid var(--nf-border); overflow:hidden; }
.ve-faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 22px; cursor:pointer; gap:16px; }
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--nf-primary-dark); }
.ve-faq-q i { color:var(--nf-secondary); font-size:14px; flex-shrink:0; }
.ve-faq-a { padding:0 22px 18px; font-size:14px; color:var(--nf-text); line-height:1.8; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }
.ve-faq-item.open .ve-faq-q { border-bottom:1px solid var(--nf-border); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ve-contact-cards-section { background:var(--nf-primary-dark); padding:0; margin-top:-1px; }
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.ve-contact-info-card { padding:50px 40px; text-align:center; border-right:1px solid rgba(255,255,255,0.08); }
.ve-contact-info-card:last-child { border-right:none; }
.ve-ci-icon { width:60px; height:60px; background:rgba(11,125,233,0.15); border:1px solid rgba(11,125,233,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:22px; color:var(--nf-secondary); }
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:#fff; margin-bottom:10px; }
.ve-contact-info-card p { font-size:14px; color:rgba(255,255,255,0.55); margin:0; line-height:1.7; }
.ve-contact-info-card small { font-size:12px; opacity:0.6; }

.ve-contact-form-wrap { background:#fff; border-radius:16px; padding:50px; box-shadow:var(--nf-shadow); }
.ve-contact-form-wrap h2 { font-size:34px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--nf-secondary); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--nf-text); margin-bottom:30px; }

.ve-contact-form .ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.ve-form-group { display:flex; flex-direction:column; margin-bottom:20px; }
.ve-form-group label { font-size:13px; font-weight:700; color:var(--nf-primary-dark); margin-bottom:7px; text-transform:uppercase; letter-spacing:0.5px; }
.ve-form-group input, .ve-form-group select, .ve-form-group textarea {
  border:1px solid var(--nf-border); border-radius:8px; padding:12px 16px;
  font-size:14px; color:var(--nf-primary-dark); outline:none; transition:var(--nf-trans);
  font-family:'DM Sans',sans-serif; background:#fff;
}
.ve-form-group input:focus, .ve-form-group select:focus, .ve-form-group textarea:focus { border-color:var(--nf-secondary); box-shadow:0 0 0 3px rgba(11,125,233,0.12); }
.ve-form-group textarea { resize:vertical; }

.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:20px; }
.ve-ca-box { background:var(--nf-primary-dark); border-radius:14px; padding:32px; }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:#fff; margin-bottom:20px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--nf-secondary); }
.ve-ca-hours { background:var(--nf-surface); border-radius:14px; padding:28px; }
.ve-ca-hours h5 { font-size:16px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours h5 i { color:var(--nf-secondary); }
.ve-ca-hours ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.ve-ca-hours ul li { display:flex; justify-content:space-between; font-size:14px; color:var(--nf-text); padding-bottom:10px; border-bottom:1px solid var(--nf-border); }
.ve-ca-hours ul li:last-child { border-bottom:none; padding-bottom:0; }
.ve-ca-hours ul li strong { color:var(--nf-primary-dark); font-weight:700; }
.ve-ca-social { background:#fff; border-radius:14px; padding:24px; border:1px solid var(--nf-border); }
.ve-ca-social h5 { font-size:15px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:16px; }
.ve-ca-social .ve-social a {
  min-width:0;
  flex:1 1 96px;
}

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination { display:flex; gap:8px; margin-top:40px; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; text-decoration:none; background:var(--nf-surface); color:var(--nf-primary-dark); transition:var(--nf-trans); border:1px solid var(--nf-border); }
.ve-pagination a:hover, .ve-pagination a.active { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }

.ve-sidebar { position:sticky; top:90px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--nf-radius); padding:28px; margin-bottom:24px; border:1px solid var(--nf-border); }
.ve-sidebar-title { font-size:16px; font-weight:900; color:var(--nf-primary-dark); margin-bottom:20px; padding-bottom:12px; border-bottom:2px solid var(--nf-secondary); display:inline-block; }
.ve-search-box { display:flex; border:1px solid var(--nf-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:12px 14px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--nf-secondary); border:none; padding:0 18px; cursor:pointer; color:var(--nf-primary-dark); font-size:14px; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li { border-bottom:1px solid var(--nf-border); }
.ve-cat-list li:last-child { border-bottom:none; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--nf-text); text-decoration:none; transition:var(--nf-trans); }
.ve-cat-list li a:hover { color:var(--nf-secondary); }
.ve-cat-list li a span { background:var(--nf-surface); border-radius:4px; padding:2px 8px; font-size:12px; font-weight:700; color:var(--nf-primary-dark); }
.ve-recent-post { display:flex; gap:14px; margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid var(--nf-border); }
.ve-recent-post:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.ve-rp-img { width:64px; height:54px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post a { font-size:13px; font-weight:700; color:var(--nf-primary-dark); text-decoration:none; display:block; margin-bottom:4px; line-height:1.4; transition:var(--nf-trans); }
.ve-recent-post a:hover { color:var(--nf-secondary); }
.ve-recent-post span { font-size:12px; color:#aaa; display:flex; align-items:center; gap:5px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--nf-surface); color:var(--nf-text); border-radius:6px; padding:6px 12px; font-size:12px; font-weight:600; text-decoration:none; transition:var(--nf-trans); border:1px solid var(--nf-border); }
.ve-tags a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }

/* Single post */
.ve-article { background:#fff; border-radius:16px; padding:0; overflow:hidden; box-shadow:var(--nf-shadow); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:40px; }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--nf-primary-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.85; color:var(--nf-text); margin-bottom:16px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--nf-primary-dark); line-height:1.7; border-left:4px solid var(--nf-secondary); padding-left:20px; margin-bottom:28px; }
.ve-blockquote { background:var(--nf-surface); border-left:4px solid var(--nf-secondary); border-radius:0 10px 10px 0; padding:24px 28px; margin:30px 0; }
.ve-blockquote p { font-size:18px; font-style:italic; font-weight:600; color:var(--nf-primary-dark); margin-bottom:8px; }
.ve-blockquote cite { font-size:13px; color:var(--nf-text); font-style:normal; }
.ve-article-tags { margin-top:30px; padding-top:20px; border-top:1px solid var(--nf-border); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:13px; color:var(--nf-primary-dark); font-weight:700; }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:13px; color:var(--nf-primary-dark); font-weight:700; }
.ve-article-share a { width:36px; height:36px; border-radius:8px; background:var(--nf-surface); color:var(--nf-text); display:flex; align-items:center; justify-content:center; text-decoration:none; transition:var(--nf-trans); }
.ve-article-share a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4, .ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid var(--nf-border); }
.ve-comment.ve-comment-reply { margin-left:60px; }
.ve-comment:last-child { border-bottom:none; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; }
.ve-comment-meta { display:flex; gap:16px; align-items:center; margin-bottom:8px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--nf-primary-dark); }
.ve-comment-meta span { font-size:12px; color:#aaa; }
.ve-comment-body p { font-size:14px; color:var(--nf-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:12px; font-weight:700; color:var(--nf-secondary); text-decoration:none; text-transform:uppercase; letter-spacing:0.5px; }
.ve-comment-form-wrap { background:#fff; border-radius:16px; padding:40px; box-shadow:var(--nf-shadow); }

/* Responsive additions */
@media(max-width:991px) {
  .ve-about-text { padding-left:0; margin-top:40px; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-contact-info-card { border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); }
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-page-hero-content h1 { font-size:36px; }
}
@media(max-width:767px) {
  .ve-contact-form .ve-form-row { grid-template-columns:1fr; }
  .ve-contact-form-wrap { padding:28px; }
  .ve-article-body { padding:24px; }
  .ve-about-img-stack { padding-bottom:30px; padding-right:30px; }
  .ve-about-img-2 { width:150px; height:120px; }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
  min-height: 380px; background-size:cover; background-position:center;
  position:relative; display:flex; align-items:flex-end; padding-bottom:60px;
  margin-top:72px;
}
.ve-page-hero-sm { min-height:460px; }
.ve-page-hero-overlay { position:absolute; inset:0; background:linear-gradient(180deg, rgba(13,27,42,0.5) 0%, rgba(13,27,42,0.85) 100%); }
.ve-page-hero-content { position:relative; z-index:2; }
.ve-page-hero-content h1 { font-size:46px; font-weight:900; color:#fff; margin:10px 0 18px; line-height:1.15; }
.ve-page-hero-content h1 span { color:var(--nf-secondary); }
.ve-post-meta-hero { display:flex; gap:24px; flex-wrap:wrap; }
.ve-post-meta-hero span { font-size:14px; color:rgba(255,255,255,0.7); display:inline-flex; align-items:center; gap:6px; }

/* Breadcrumb */
.ve-breadcrumb { list-style:none; margin:0; padding:0; display:flex; gap:10px; }
.ve-breadcrumb li { font-size:14px; color:rgba(255,255,255,0.6); }
.ve-breadcrumb li a { color:var(--nf-secondary); text-decoration:none; }
.ve-breadcrumb li a:hover { color:#fff; }
.ve-breadcrumb li.active { color:rgba(255,255,255,0.5); }
.ve-breadcrumb li:not(:last-child)::after { content:'/'; margin-left:10px; color:rgba(255,255,255,0.3); }

/* About Page */
.ve-about-img-stack { position:relative; padding:0 40px 40px 0; }
.ve-about-img-1 { height:400px; border-radius:16px; background-size:cover; background-position:center; }
.ve-about-img-2 { position:absolute; bottom:0; right:0; width:55%; height:230px; border-radius:14px; background-size:cover; background-position:center; border:4px solid #fff; box-shadow:0 20px 50px rgba(0,0,0,0.2); }
.ve-about-ribbon { position:absolute; top:30px; left:-20px; background:var(--nf-secondary); border-radius:12px; padding:18px 22px; text-align:center; }
.ve-about-ribbon strong { display:block; font-size:36px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--nf-primary-dark); }
.ve-about-ribbon span { font-size:11px; font-weight:700; color:var(--nf-primary-dark); text-transform:uppercase; letter-spacing:0.8px; }
.ve-about-text { padding-left:40px; }
.ve-about-text h2 { font-size:38px; font-weight:900; margin-bottom:16px; }
.ve-about-text h2 span { color:var(--nf-secondary); }
.ve-lead { font-size:17px; font-weight:500; color:var(--nf-primary-dark); margin-bottom:14px; line-height:1.7; }
.ve-about-text > p { font-size:15px; line-height:1.8; margin-bottom:24px; }
.ve-about-features { display:flex; flex-direction:column; gap:10px; margin-bottom:10px; }
.ve-af-item { display:flex; align-items:center; gap:12px; font-size:14px; color:var(--nf-primary-dark); font-weight:500; }
.ve-af-item i { color:var(--nf-secondary); font-size:14px; }

/* MVV Section */
.ve-mvv-section { background:linear-gradient(135deg, var(--nf-primary-dark) 0%, var(--nf-primary) 100%); padding:80px 0; }
.ve-mvv-section .ve-section-header h2 { color:#fff; }
.ve-mvv-section .ve-section-header p { color:rgba(255,255,255,0.6); }
.ve-mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.ve-mvv-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:var(--nf-radius); padding:36px 28px; text-align:center; transition:var(--nf-trans); }
.ve-mvv-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-4px); }
.ve-mvv-icon { width:64px; height:64px; background:linear-gradient(135deg, var(--nf-secondary), var(--nf-secondary-soft)); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--nf-primary-dark); margin:0 auto 20px; }
.ve-mvv-card h4 { font-size:20px; font-weight:800; color:#fff; margin-bottom:12px; }
.ve-mvv-card p { font-size:14px; color:rgba(255,255,255,0.6); line-height:1.8; margin:0; }

/* Team Cards */
.ve-team-section { background:var(--nf-surface); }
.ve-team-card { background:#fff; border-radius:var(--nf-radius); overflow:hidden; border:1px solid var(--nf-border); transition:var(--nf-trans); margin-bottom:28px; }
.ve-team-card:hover { transform:translateY(-5px); box-shadow:var(--nf-shadow); }
.ve-team-img { height:260px; background-size:cover; background-position:center top; }
.ve-team-info { padding:22px; text-align:center; }
.ve-team-info h5 { font-size:17px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:4px; }
.ve-team-info span { font-size:13px; color:var(--nf-text); display:block; margin-bottom:14px; }
.ve-team-social { display:flex; justify-content:center; gap:8px; }
.ve-team-social a { width:34px; height:34px; border-radius:6px; background:var(--nf-surface); color:var(--nf-primary); display:flex; align-items:center; justify-content:center; font-size:13px; text-decoration:none; transition:var(--nf-trans); }
.ve-team-social a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); }

/* Process Steps */
.ve-process-section { background:var(--nf-surface); padding:80px 0; }
.ve-process-grid { display:flex; align-items:center; gap:0; margin-top:50px; flex-wrap:wrap; }
.ve-process-step { flex:1; min-width:200px; background:#fff; border-radius:var(--nf-radius); padding:32px 24px; text-align:center; border:1px solid var(--nf-border); }
.ve-process-num { font-size:42px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--nf-secondary); line-height:1; margin-bottom:14px; }
.ve-process-step h5 { font-size:16px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:8px; }
.ve-process-step p { font-size:13px; color:var(--nf-text); line-height:1.7; margin:0; }
.ve-process-arrow { font-size:24px; color:var(--nf-secondary); padding:0 16px; flex-shrink:0; }

/* FAQ */
.ve-faq-section { background:#fff; }
.ve-faq-list { display:flex; flex-direction:column; gap:0; }
.ve-faq-item { border-bottom:1px solid var(--nf-border); }
.ve-faq-q { display:flex; justify-content:space-between; align-items:center; padding:18px 0; cursor:pointer; gap:16px; }
.ve-faq-q span { font-size:15px; font-weight:700; color:var(--nf-primary-dark); }
.ve-faq-q i { font-size:14px; color:var(--nf-secondary); flex-shrink:0; transition:var(--nf-trans); }
.ve-faq-item.open .ve-faq-q i { transform:rotate(45deg); }
.ve-faq-a { font-size:14px; color:var(--nf-text); line-height:1.8; padding:0 0 16px; display:none; }
.ve-faq-item.open .ve-faq-a { display:block; }

/* Contact Cards */
.ve-contact-cards-section { background:var(--nf-surface); padding:60px 0; }
.ve-contact-cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ve-contact-info-card { background:#fff; border-radius:var(--nf-radius); padding:36px 28px; text-align:center; border:1px solid var(--nf-border); transition:var(--nf-trans); }
.ve-contact-info-card:hover { transform:translateY(-4px); box-shadow:var(--nf-shadow); }
.ve-ci-icon { width:60px; height:60px; background:linear-gradient(135deg, var(--nf-primary-dark), var(--nf-primary)); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--nf-secondary); margin:0 auto 18px; }
.ve-contact-info-card h5 { font-size:17px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:8px; }
.ve-contact-info-card p { font-size:14px; color:var(--nf-text); line-height:1.7; margin:0; }

/* Contact Form Wrap */
.ve-contact-form-wrap h2 { font-size:36px; font-weight:900; margin-bottom:10px; }
.ve-contact-form-wrap h2 span { color:var(--nf-secondary); }
.ve-contact-form-wrap > p { font-size:15px; color:var(--nf-text); margin-bottom:28px; }
.ve-track-helper { font-size:14px; color:var(--nf-text); line-height:1.7; margin:0 0 22px; max-width:560px; }
.ve-contact-form { display:flex; flex-direction:column; gap:18px; }
.ve-form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.ve-form-group { display:flex; flex-direction:column; gap:6px; }
.ve-form-group label { font-size:13px; font-weight:700; color:var(--nf-primary-dark); text-transform:uppercase; letter-spacing:0.5px; }
.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea { border:2px solid var(--nf-border); border-radius:8px; padding:12px 16px; font-size:14px; font-family:'DM Sans',sans-serif; color:var(--nf-primary-dark); background:#fff; outline:none; transition:var(--nf-trans); }
.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus { border-color:var(--nf-secondary); box-shadow:0 0 0 3px rgba(11,125,233,0.1); }
.ve-form-group textarea { resize:vertical; }
.ve-contact-form .ve-btn-primary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding:14px 20px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  background:linear-gradient(135deg, #072b67 0%, var(--nf-secondary) 55%, #27a6ff 100%);
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:0.03em;
  text-shadow:0 1px 1px rgba(0,0,0,0.18);
  box-shadow:0 18px 34px rgba(3,29,74,0.18);
}
.ve-contact-form .ve-track-submit {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}
.ve-contact-form .ve-track-submit .ve-track-submit-text {
  position: relative;
  z-index: 1;
}
.ve-contact-form .ve-btn-primary:hover {
  color:#fff;
  transform:translateY(-1px);
  box-shadow:0 20px 38px rgba(3,29,74,0.24);
}
.ve-contact-form .ve-btn-primary i { font-size:14px; }
.ve-track-result {
  margin-top:22px;
  padding:22px;
  border-radius:18px;
  background:linear-gradient(180deg, #0a2a67 0%, #061a43 100%);
  border:1px solid rgba(11,125,233,0.16);
  box-shadow:0 18px 34px rgba(3,29,74,0.16);
}
.ve-track-result[hidden] { display:none !important; }
.ve-track-result-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.ve-track-result-tag {
  font-size:12px;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--nf-secondary);
}
.ve-track-result-state {
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,0.72);
}
.ve-track-result h3 {
  font-size:20px;
  line-height:1.25;
  color:#fff;
  margin:0 0 8px;
}
.ve-track-result-note {
  font-size:14px;
  color:rgba(255,255,255,0.68);
  line-height:1.65;
  margin:0 0 18px;
}
.ve-track-result-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}
.ve-track-result-grid div {
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:14px;
  padding:14px;
}
.ve-track-result-grid span {
  display:block;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(255,255,255,0.55);
  margin-bottom:6px;
}
.ve-track-result-grid strong {
  display:block;
  font-size:14px;
  color:#fff;
  word-break:break-word;
}

.ve-track-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ve-track-modal[hidden] { display:none !important; }
.ve-track-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 29, 0.72);
  backdrop-filter: blur(8px);
}
.ve-track-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0a2f74 0%, #081b45 100%);
  border: 1px solid rgba(11, 125, 233, 0.22);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  animation: ve-track-pop .22s ease-out;
}
.ve-track-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--nf-trans);
}
.ve-track-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}
.ve-track-modal-card .ve-track-result-head {
  padding-right: 44px;
}
.ve-track-modal-card .ve-track-result-tag {
  color: #4fb0ff;
}
.ve-track-modal-card .ve-track-result-state,
.ve-track-modal-card .ve-track-result-note {
  color: rgba(255, 255, 255, 0.72);
}
.ve-track-modal-card h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 8px;
}
.ve-track-modal-card .ve-track-result-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}
.ve-track-modal-card .ve-track-result-grid div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

body.ve-modal-open {
  overflow: hidden;
}

@keyframes ve-track-pop {
  from { transform: translateY(10px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Contact Aside */
.ve-contact-aside { display:flex; flex-direction:column; gap:24px; padding-left:30px; }

/* ============================================================
   MOBILE POLISH
   ============================================================ */
html { overflow-x:hidden; }
body { overflow-x:hidden; }

@media (max-width:991px) {
  .ve-nav-wrap { min-height:64px; height:auto; padding:12px 24px; }
  .ve-logo-text { font-size:18px; }
  .ve-mobile-menu { padding:10px 24px 16px; }
  .ve-mobile-menu ul li a { padding:13px 4px; }

  .ve-hero { padding-top:64px; }
  .ve-hero-left { padding:72px 24px 52px; }
  .ve-hero-left h1 { font-size:clamp(38px, 7vw, 50px); }
  .ve-hero-left p { max-width:none; margin-bottom:28px; }
  .ve-hero-btns { margin-bottom:36px; }
  .ve-hero-right { height:330px; }

  .ve-section { padding:72px 0; }
  .ve-section-header { margin-bottom:38px; }
  .ve-section-header h2 { font-size:clamp(30px, 5vw, 42px); }
  .ve-about-text h2, .ve-whyus-content h2 { font-size:clamp(30px, 5vw, 40px); }
  .ve-page-hero { min-height:320px; margin-top:64px; padding:0 0 48px; }
  .ve-page-hero-sm { min-height:360px; }
  .ve-page-hero-content h1 { font-size:clamp(32px, 6vw, 46px); }
  .ve-page-hero-content { padding-left:24px; padding-right:24px; }

  .ve-about-text, .ve-whyus-content, .ve-contact-aside { padding-left:0; }
  .ve-about-img-stack { margin:0 8px; }
  .ve-whyus-img-wrap { padding-right:24px; padding-bottom:28px; }
  .ve-whyus-img-main { height:400px; }
  .ve-contact-form-wrap { padding:36px 28px; }
  .ve-article-featured { height:300px; }
  .ve-comment.ve-comment-reply { margin-left:28px; }
}

@media (max-width:767px) {
  .container, .container-fluid { padding-left:16px; padding-right:16px; }
  .ve-nav-wrap { padding-left:16px; padding-right:16px; }
  .ve-logo-icon { width:34px; height:34px; font-size:18px; }
  .ve-logo-text { font-size:17px; }
  .ve-mobile-menu { padding-left:16px; padding-right:16px; }

  .ve-hero-left { padding:58px 16px 44px; }
  .ve-hero-left h1 { font-size:clamp(34px, 10vw, 42px); margin-bottom:18px; }
  .ve-hero-left p { font-size:15px; line-height:1.65; }
  .ve-hero-badge { font-size:11px; padding:6px 12px; margin-bottom:22px; }
  .ve-hero-btns { width:100%; gap:10px; }
  .ve-btn-primary, .ve-btn-ghost { flex:1 1 140px; text-align:center; padding:12px 14px; font-size:14px; }
  .ve-hero-stats { align-items:flex-start; gap:14px; }
  .ve-stat strong { font-size:22px; }
  .ve-stat span { font-size:10px; letter-spacing:.5px; }
  .ve-stat-divider { height:34px; }
  .ve-hero-right { height:260px; }
  .ve-hero-img-accent { width:130px; height:95px; right:18px; bottom:18px; }
  .ve-float-card { top:20px; right:18px; padding:10px 12px; gap:9px; }
  .ve-float-card i { font-size:20px; }
  .ve-float-card strong { font-size:17px; }
  .ve-float-card span { font-size:10px; }

  .ve-trust-inner { gap:30px; }
  .ve-section { padding:56px 0; }
  .ve-section-header h2 { font-size:30px; }
  .ve-section-header p { font-size:14px; line-height:1.7; }
  .ve-service-card, .ve-testi-card { padding:26px 22px; }
  .ve-counter-section, .ve-mvv-section, .ve-process-section { padding:56px 0; }
  .ve-counter-item { padding:24px 12px; }
  .ve-counter-item strong { font-size:38px; }
  .ve-counter-item span { font-size:20px; }

  .ve-page-hero { min-height:270px; padding-bottom:34px; }
  .ve-page-hero-sm { min-height:310px; }
  .ve-page-hero-content { padding-left:16px; padding-right:16px; }
  .ve-page-hero-content h1 { font-size:32px; overflow-wrap:anywhere; }
  .ve-breadcrumb { flex-wrap:wrap; gap:6px; }
  .ve-breadcrumb li { font-size:12px; }
  .ve-breadcrumb li:not(:last-child)::after { margin-left:6px; }
  .ve-post-meta-hero { gap:10px 16px; }
  .ve-post-meta-hero span { font-size:12px; }

  .ve-about-img-1 { height:300px; }
  .ve-about-img-2 { width:48%; height:150px; }
  .ve-about-ribbon { left:-8px; top:20px; padding:14px 16px; }
  .ve-about-ribbon strong { font-size:28px; }
  .ve-about-ribbon span { font-size:9px; }
  .ve-whyus-img-main { height:300px; }
  .ve-whyus-badge { padding:14px 18px; min-width:125px; }
  .ve-whyus-badge strong { font-size:30px; }

  .ve-contact-info-card { padding:28px 20px; }
  .ve-contact-form-wrap {
    padding:20px 14px;
    border-radius:22px;
    background:
      radial-gradient(circle at top right, rgba(11,125,233,0.10), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    border: 1px solid rgba(11, 125, 233, 0.12);
    box-shadow: 0 22px 44px rgba(3, 29, 74, 0.10);
  }
  .ve-contact-form-wrap h2 {
    font-size:26px;
    line-height:1.08;
    margin-bottom:10px;
    letter-spacing: -0.02em;
  }
  .ve-contact-form {
    gap: 10px;
  }
  .ve-form-group {
    gap: 7px;
    margin-bottom: 0;
  }
  .ve-form-group label {
    font-size: 10px;
    letter-spacing: 0.10em;
    color: var(--nf-primary);
  }
  .ve-form-group input,
  .ve-form-group select,
  .ve-form-group textarea {
    border: 1.5px solid rgba(11, 125, 233, 0.12);
    border-radius: 14px;
    padding: 12px 14px;
    min-height: 46px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.75),
      0 8px 18px rgba(3,29,74,0.03);
  }
  .ve-form-group input::placeholder,
  .ve-form-group textarea::placeholder {
    color: rgba(13, 27, 42, 0.45);
  }
  .ve-contact-form .ve-btn-primary {
    width: 100%;
    min-width: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    margin-top: 8px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    background: linear-gradient(135deg, #071f4b 0%, #0b7de9 52%, #35b7ff 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 13px;
    box-shadow: 0 16px 28px rgba(3, 29, 74, 0.18);
  }
  .ve-contact-form .ve-track-submit {
    background: linear-gradient(135deg, #082556 0%, #0b7de9 58%, #22a6ff 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    text-shadow: 0 1px 1px rgba(0,0,0,0.20);
  }
  .ve-contact-form .ve-btn-primary:hover {
    transform: translateY(-1px);
    color: #ffffff;
  }
  .ve-contact-form .ve-track-submit:hover {
    color: #ffffff !important;
  }
  .ve-contact-form .ve-btn-primary i {
    font-size: 13px;
  }

  .ve-track-helper {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(13, 27, 42, 0.70);
  }

  .ve-track-result {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .ve-track-result-head {
    align-items: flex-start;
  }

  .ve-track-result h3 {
    font-size: 17px;
  }

  .ve-track-result-note {
    font-size: 12px;
  }

  .ve-track-result-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ve-track-result-grid div {
    padding: 12px;
  }

  .ve-track-modal {
    padding: 14px;
  }

  .ve-track-modal-card {
    width: 100%;
    max-height: calc(100vh - 28px);
    padding: 18px;
    border-radius: 20px;
  }

  .ve-track-modal-card h3 {
    font-size: 19px;
  }

  .ve-track-modal-card .ve-track-result-grid div {
    padding: 12px 12px;
  }

  .ve-contact-aside { margin-top:24px; }
  .ve-ca-box, .ve-ca-hours, .ve-ca-social { padding:22px; }
  .ve-form-row { grid-template-columns:1fr; gap:0; }

  .ve-newsletter-section { padding:44px 0; }
  .ve-newsletter-wrap { gap:24px; }
  .ve-nl-left { align-items:flex-start; gap:14px; }
  .ve-nl-left i { font-size:32px; }
  .ve-nl-left h3 { font-size:19px; }
  .ve-nl-form { display:flex; width:100%; flex-direction:column; border:0; gap:10px; overflow:visible; }
  .ve-nl-form input, .ve-nl-form button { width:100%; min-height:48px; border-radius:8px; }
  .ve-insight-img { height:190px; }
  .ve-article-featured { height:220px; }
  .ve-article-body { padding:22px 18px; }
  .ve-article-body h3 { font-size:20px; }
  .ve-article-lead { padding-left:14px; font-size:16px; }
  .ve-comment-meta { align-items:flex-start; flex-direction:column; gap:3px; }
  .ve-comment.ve-comment-reply { margin-left:16px; }
  .ve-footer { padding-top:56px; }
  .ve-footer-bottom-inner ul { flex-wrap:wrap; justify-content:center; gap:12px; }
}

@media (prefers-reduced-motion:reduce) {
  .ve-trust-inner { animation:none; }
  .ve-contact-cards-grid.ve-marquee-ready { animation:none; transform:none; }
  *, *::before, *::after { scroll-behavior:auto !important; transition-duration:.01ms !important; }
}

@keyframes ve-contact-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.ve-ca-box { background:var(--nf-surface); border-radius:var(--nf-radius); padding:28px; border:1px solid var(--nf-border); }
.ve-ca-box h4 { font-size:18px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:18px; }
.ve-ca-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
.ve-ca-list li { font-size:14px; color:var(--nf-text); display:flex; align-items:center; gap:10px; }
.ve-ca-list li i { color:var(--nf-secondary); }
.ve-ca-hours { background:var(--nf-primary-dark); border-radius:var(--nf-radius); padding:24px; }
.ve-ca-hours h5 { font-size:15px; font-weight:700; color:var(--nf-secondary); margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.ve-ca-hours ul { list-style:none; margin:0; padding:0; }
.ve-ca-hours ul li { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.07); font-size:14px; }
.ve-ca-hours ul li:last-child { border-bottom:none; }
.ve-ca-hours ul li span { color:rgba(255,255,255,0.5); }
.ve-ca-hours ul li strong { color:#fff; }
.ve-ca-social h5 { font-size:15px; font-weight:700; color:var(--nf-primary-dark); margin-bottom:12px; }

/* Blog / Sidebar */
.ve-sidebar { display:flex; flex-direction:column; gap:30px; padding-left:20px; }
.ve-sidebar-widget { background:#fff; border-radius:var(--nf-radius); padding:28px; border:1px solid var(--nf-border); }
.ve-sidebar-title { font-size:16px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:18px; padding-bottom:12px; border-bottom:2px solid var(--nf-secondary); display:inline-block; }
.ve-search-box { display:flex; border:2px solid var(--nf-border); border-radius:8px; overflow:hidden; }
.ve-search-box input { flex:1; border:none; padding:10px 14px; font-size:14px; outline:none; font-family:'DM Sans',sans-serif; }
.ve-search-box button { background:var(--nf-secondary); border:none; padding:0 16px; color:var(--nf-primary-dark); cursor:pointer; font-size:14px; transition:var(--nf-trans); }
.ve-search-box button:hover { background:var(--nf-primary-dark); color:#fff; }
.ve-cat-list { list-style:none; margin:0; padding:0; }
.ve-cat-list li a { display:flex; justify-content:space-between; padding:10px 0; font-size:14px; color:var(--nf-text); text-decoration:none; border-bottom:1px solid var(--nf-border); transition:var(--nf-trans); }
.ve-cat-list li:last-child a { border-bottom:none; }
.ve-cat-list li a span { background:var(--nf-surface); color:var(--nf-primary-dark); font-size:12px; font-weight:700; padding:2px 8px; border-radius:20px; }
.ve-cat-list li a:hover { color:var(--nf-secondary); }
.ve-recent-post { display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.ve-recent-post:last-child { margin-bottom:0; }
.ve-rp-img { width:65px; height:50px; border-radius:8px; background-size:cover; background-position:center; flex-shrink:0; }
.ve-recent-post div a { display:block; font-size:13px; font-weight:700; color:var(--nf-primary-dark); text-decoration:none; margin-bottom:4px; line-height:1.4; }
.ve-recent-post div a:hover { color:var(--nf-secondary); }
.ve-recent-post div span { font-size:12px; color:var(--nf-text); display:inline-flex; align-items:center; gap:4px; }
.ve-tags { display:flex; flex-wrap:wrap; gap:8px; }
.ve-tags a { background:var(--nf-surface); color:var(--nf-text); font-size:13px; padding:6px 14px; border-radius:20px; text-decoration:none; border:1px solid var(--nf-border); transition:var(--nf-trans); }
.ve-tags a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }

/* Pagination */
.ve-pagination { display:flex; gap:8px; margin-top:40px; flex-wrap:wrap; }
.ve-pagination a { width:40px; height:40px; border-radius:8px; background:var(--nf-surface); border:1px solid var(--nf-border); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:600; color:var(--nf-text); text-decoration:none; transition:var(--nf-trans); }
.ve-pagination a.active, .ve-pagination a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }

/* Article */
.ve-article { background:#fff; border-radius:var(--nf-radius); overflow:hidden; border:1px solid var(--nf-border); margin-bottom:40px; }
.ve-article-featured { height:380px; background-size:cover; background-position:center; }
.ve-article-body { padding:36px; }
.ve-article-lead { font-size:17px; font-weight:500; color:var(--nf-primary-dark); line-height:1.8; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--nf-border); }
.ve-article-body h3 { font-size:22px; font-weight:800; color:var(--nf-primary-dark); margin:28px 0 12px; }
.ve-article-body p { font-size:15px; line-height:1.8; color:var(--nf-text); margin-bottom:16px; }
.ve-blockquote { background:var(--nf-surface); border-left:4px solid var(--nf-secondary); border-radius:0 10px 10px 0; padding:24px 28px; margin:28px 0; }
.ve-blockquote p { font-size:17px; font-style:italic; color:var(--nf-primary-dark); font-weight:500; margin:0 0 8px; }
.ve-blockquote cite { font-size:13px; color:var(--nf-secondary); font-weight:700; font-style:normal; }
.ve-article-tags { display:flex; align-items:center; gap:10px; margin-top:28px; flex-wrap:wrap; }
.ve-article-tags strong { font-size:14px; color:var(--nf-primary-dark); }
.ve-article-tags a { background:var(--nf-surface); color:var(--nf-text); font-size:13px; padding:5px 12px; border-radius:20px; text-decoration:none; border:1px solid var(--nf-border); transition:var(--nf-trans); }
.ve-article-tags a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }
.ve-article-share { display:flex; align-items:center; gap:10px; margin-top:16px; }
.ve-article-share strong { font-size:14px; color:var(--nf-primary-dark); }
.ve-article-share a { width:34px; height:34px; border-radius:8px; background:var(--nf-surface); color:var(--nf-primary); display:flex; align-items:center; justify-content:center; font-size:14px; text-decoration:none; transition:var(--nf-trans); border:1px solid var(--nf-border); }
.ve-article-share a:hover { background:var(--nf-secondary); color:var(--nf-primary-dark); border-color:var(--nf-secondary); }

/* Comments */
.ve-comments-section { margin-bottom:40px; }
.ve-comments-section h4 { font-size:22px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:24px; }
.ve-comment { display:flex; gap:16px; margin-bottom:24px; }
.ve-comment-reply { margin-left:50px; }
.ve-comment-avatar { width:50px; height:50px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.ve-comment-body { flex:1; background:var(--nf-surface); border-radius:10px; padding:18px; }
.ve-comment-meta { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; flex-wrap:wrap; gap:6px; }
.ve-comment-meta strong { font-size:15px; font-weight:800; color:var(--nf-primary-dark); }
.ve-comment-meta span { font-size:13px; color:var(--nf-text); }
.ve-comment-body p { font-size:14px; color:var(--nf-text); line-height:1.7; margin-bottom:10px; }
.ve-reply-btn { font-size:13px; font-weight:700; color:var(--nf-secondary); text-decoration:none; }
.ve-reply-btn:hover { color:var(--nf-primary-dark); }

/* Comment form */
.ve-comment-form-wrap h4 { font-size:22px; font-weight:800; color:var(--nf-primary-dark); margin-bottom:24px; }

/* Elements page */
.ve-elements-section { background:#fff; }
.ve-el-block { margin-bottom:70px; }
.ve-el-title { font-size:22px; font-weight:900; color:var(--nf-primary-dark); margin-bottom:28px; padding-bottom:14px; border-bottom:2px solid var(--nf-border); display:flex; align-items:center; gap:14px; }
.ve-el-title span { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; background:var(--nf-secondary); color:var(--nf-primary-dark); border-radius:8px; font-size:14px; font-weight:900; flex-shrink:0; }
.ve-el-demo { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }

/* Why us section */
.ve-whyus-section { background:#fff; }
.ve-whyus-img-wrap { position:relative; padding-bottom:40px; padding-right:40px; }
.ve-whyus-img-main { height:480px; border-radius:16px; background-size:cover; background-position:center; }
.ve-whyus-badge { position:absolute; bottom:0; right:0; background:var(--nf-secondary); border-radius:14px; padding:22px 28px; text-align:center; min-width:160px; }
.ve-whyus-badge strong { display:block; font-size:40px; font-family:'Nunito',sans-serif; font-weight:900; color:var(--nf-primary-dark); }
.ve-whyus-badge span { font-size:12px; font-weight:600; color:var(--nf-primary-dark); opacity:0.7; text-transform:uppercase; letter-spacing:0.8px; }
.ve-whyus-content { padding-left:40px; }
.ve-whyus-content h2 { font-size:40px; font-weight:900; line-height:1.2; margin-bottom:16px; }
.ve-whyus-content h2 span { color:var(--nf-secondary); }

/* Responsive extras */
@media(max-width:991px) {
  .ve-mvv-grid { grid-template-columns:1fr; }
  .ve-contact-cards-grid { grid-template-columns:1fr; }
  .ve-process-grid { flex-direction:column; }
  .ve-process-arrow { transform:rotate(90deg); }
  .ve-about-text, .ve-whyus-content { padding-left:0; margin-top:30px; }
  .ve-contact-aside { padding-left:0; margin-top:30px; }
  .ve-sidebar { padding-left:0; margin-top:40px; }
  .ve-form-row { grid-template-columns:1fr; }
}
@media(max-width:767px) {
  .ve-page-hero-content h1 { font-size:30px; }
  .ve-testi-grid { grid-template-columns:1fr; }
  .ve-nl-form { flex-direction:column; border-radius:8px; }
  .ve-nl-form input, .ve-nl-form button { width:100%; border-radius:8px !important; }
  .ve-about-img-2 { display:none; }
}

/* ---- BRAND MARK ---- */
.ve-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ve-brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  object-fit: contain;
}

.ve-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--nf-white);
  text-transform: uppercase;
}

.ve-brand-name strong {
  color: var(--nf-green-bright);
  font-weight: 700;
}

.ve-header .ve-brand-name,
.ve-footer .ve-brand-name {
  color: var(--nf-white);
  text-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.ve-page-hero .ve-brand-name {
  color: var(--nf-primary-dark);
}

/* ---- BRAND ACCENTS ---- */
.ve-hero-left h1 .ve-highlight {
  color: var(--nf-green);
}

.ve-btn-primary,
.ve-btn-white {
  background: linear-gradient(135deg, var(--nf-primary), var(--nf-secondary), var(--nf-green));
  color: var(--nf-white);
  box-shadow: var(--nf-shadow-soft);
}

.ve-btn-primary:hover,
.ve-btn-white:hover {
  background: linear-gradient(135deg, var(--nf-secondary), var(--nf-green), var(--nf-green-bright));
  color: var(--nf-white);
}

.ve-nav-cta .ve-cta-btn {
  background: linear-gradient(135deg, var(--nf-secondary), #4FA7FF);
  color: var(--nf-white);
  box-shadow: 0 14px 30px rgba(11, 125, 233, 0.24);
}

.ve-nav-cta .ve-cta-btn:hover {
  background: linear-gradient(135deg, #4FA7FF, #79C0FF);
  color: var(--nf-white);
}

.ve-trust-bar {
  background: linear-gradient(90deg, var(--nf-primary-dark), var(--nf-primary) 52%, var(--nf-green) 100%);
}

.ve-counter-section {
  background: linear-gradient(135deg, var(--nf-primary-dark) 0%, var(--nf-primary) 58%, var(--nf-secondary) 100%);
}

.ve-counter-item i,
.ve-float-card i,
.ve-process-num,
.ve-whyus-badge strong,
.ve-mvv-card h4,
.ve-about-ribbon strong {
  color: var(--nf-green-bright);
}

.ve-counter-item span,
.ve-process-arrow,
.ve-ca-hours h5,
.ve-section-tag,
.ve-insight-cat {
  color: var(--nf-secondary);
}

.ve-whyus-badge,
.ve-about-ribbon {
  background: linear-gradient(135deg, var(--nf-green), var(--nf-green-bright));
  color: var(--nf-white);
}

.ve-whyus-badge span,
.ve-about-ribbon span {
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.ve-login-page {
  background:
    radial-gradient(circle at top left, rgba(11, 125, 233, 0.10), transparent 34%),
    radial-gradient(circle at top right, rgba(6, 59, 130, 0.08), transparent 28%),
    linear-gradient(180deg, #f4f8fd 0%, #ffffff 42%, #edf4fb 100%);
}

.ve-login-hero {
  min-height: 340px;
  padding: 0 0 50px;
}

.ve-login-hero .ve-page-hero-content {
  max-width: 980px;
}

.ve-login-hero-copy {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.ve-login-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.ve-login-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.ve-login-hero-badges i {
  color: var(--nf-secondary);
}

.ve-access-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.ve-access-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: var(--nf-trans);
}

.ve-access-pill i {
  color: var(--nf-secondary);
}

.ve-access-pill:hover,
.ve-access-pill.active {
  background: rgba(255, 255, 255, 0.96);
  color: var(--nf-primary-dark);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.ve-access-pill.active i,
.ve-access-pill:hover i {
  color: var(--nf-secondary);
}

.ve-login-section {
  padding-top: 0;
  margin-top: -58px;
  padding-bottom: 92px;
  position: relative;
  z-index: 4;
}

.ve-login-shell {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(3, 29, 74, 0.14);
  backdrop-filter: blur(18px);
}

.ve-login-form-compact {
  max-width: 760px;
  margin: 0 auto;
}

.ve-login-card {
  height: 100%;
}

.ve-login-form-card,
.ve-login-aside {
  border-radius: 22px;
}

.ve-login-form-card {
  padding: 44px;
  box-shadow: none;
  border: 1px solid rgba(217, 228, 240, 0.75);
}

.ve-login-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ve-login-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 125, 233, 0.1);
  color: var(--nf-primary-dark);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(11, 125, 233, 0.12);
}

.ve-login-chip i {
  color: var(--nf-secondary);
}

.ve-login-form-card h2 {
  font-size: 36px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.ve-login-form-card > p {
  margin-bottom: 18px;
}

.ve-login-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ve-login-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--nf-surface);
  border: 1px solid var(--nf-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--nf-primary-dark);
}

.ve-login-trust i {
  color: var(--nf-secondary);
}

.ve-login-form-card .ve-contact-form {
  gap: 16px;
}

.ve-login-form-card .ve-form-group {
  margin-bottom: 0;
  gap: 8px;
}

.ve-login-form-card .ve-form-group input {
  border: 1.5px solid var(--nf-border);
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ve-login-form-card .ve-form-group input:focus {
  border-color: var(--nf-secondary);
  box-shadow: 0 0 0 4px rgba(11, 125, 233, 0.1);
}

.ve-login-inline-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ve-login-inline-help p {
  margin: 0;
  font-size: 13px;
  color: var(--nf-text);
}

.ve-login-send-btn {
  border: none;
  background: var(--nf-secondary-soft);
  color: var(--nf-primary-dark);
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 14px;
  transition: var(--nf-trans);
}

.ve-login-send-btn:hover {
  background: var(--nf-secondary);
  color: var(--nf-primary-dark);
  transform: translateY(-1px);
}

.ve-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.ve-login-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  color: var(--nf-text);
}

.ve-login-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--nf-secondary);
}

.ve-login-row a {
  font-size: 14px;
  font-weight: 700;
  color: var(--nf-secondary);
  text-decoration: none;
}

.ve-login-row a:hover {
  color: var(--nf-primary-dark);
}

.ve-login-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 22px;
  border: none;
}

.ve-login-footer-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--nf-text);
  text-align: center;
}

.ve-login-footer-note a {
  color: var(--nf-secondary);
  font-weight: 800;
  text-decoration: none;
}

.ve-login-footer-note a:hover {
  color: var(--nf-primary-dark);
}

.ve-login-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
}

.ve-login-benefits {
  background: linear-gradient(135deg, var(--nf-primary-dark), var(--nf-primary) 70%, #0b5fb8);
  color: #fff;
  border: none;
}

.ve-login-benefits h4 {
  color: #fff;
}

.ve-login-benefits .ve-ca-list li {
  color: rgba(255, 255, 255, 0.82);
}

.ve-login-benefits .ve-ca-list li i {
  color: var(--nf-secondary-soft);
}

.ve-login-steps {
  background: #fff;
  border: 1px solid var(--nf-border);
}

.ve-login-steps h5 {
  color: var(--nf-primary-dark);
}

.ve-login-steps ul li {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.ve-login-steps ul li span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--nf-secondary-soft);
  color: var(--nf-primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.ve-login-steps ul li strong {
  flex: 1;
  line-height: 1.5;
}

.ve-login-actions {
  background: var(--nf-surface);
  border: 1px solid var(--nf-border);
}

.ve-login-actions .ve-social {
  flex-wrap: wrap;
}

.ve-login-actions .ve-social a {
  min-width: calc(33.333% - 7px);
  justify-content: center;
  text-align: center;
}

.ve-login-support {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0 2px;
  margin-top: 8px;
  border-top: 1px solid var(--nf-border);
}

.ve-login-support i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 125, 233, 0.12);
  color: var(--nf-secondary);
  flex: 0 0 auto;
}

.ve-login-support strong {
  display: block;
  font-size: 14px;
  color: var(--nf-primary-dark);
  margin-bottom: 3px;
}

.ve-login-support span {
  font-size: 13px;
  color: var(--nf-text);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .ve-login-hero {
    min-height: 320px;
  }

  .ve-login-section {
    margin-top: -44px;
    padding-bottom: 76px;
  }

  .ve-login-form-card {
    padding: 34px 28px;
  }

  .ve-login-form-card h2 {
    font-size: 30px;
  }

  .ve-login-aside {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .ve-login-hero {
    min-height: 280px;
    padding-bottom: 36px;
  }

  .ve-login-hero-copy {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .ve-login-hero-badges {
    margin-bottom: 22px;
  }

  .ve-access-switch {
    margin-bottom: 22px;
  }

  .ve-login-section {
    margin-top: -30px;
    padding-bottom: 62px;
  }

  .ve-login-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .ve-login-form-card {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .ve-login-form-card h2 {
    font-size: 26px;
  }

  .ve-login-inline-help {
    align-items: flex-start;
  }

  .ve-login-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ve-login-submit {
    min-height: 50px;
  }

  .ve-login-aside {
    padding: 14px;
  }

  .ve-login-actions .ve-social a {
    min-width: 100%;
  }

  .ve-login-support {
    flex-direction: column;
  }
}

/* ============================================================
   MOBILE HARDENING
   Final overrides for the public site and login pages.
   ============================================================ */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .ve-nav-wrap {
    flex-wrap: wrap;
    gap: 12px;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .ve-logo a {
    min-width: 0;
  }

  .ve-toggler {
    margin-left: auto;
  }

  .ve-mobile-menu {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ve-mobile-menu ul {
    display: grid;
    gap: 6px;
  }

  .ve-mobile-menu ul li a {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .ve-hero {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }

  .ve-hero-left,
  .ve-hero-right {
    width: 100%;
    flex: 0 0 auto;
  }

  .ve-hero-right {
    min-height: 280px;
  }

  .ve-section {
    padding: 72px 0;
  }

  .ve-page-hero {
    margin-top: 64px;
    min-height: 320px;
    padding-bottom: 48px;
  }

  .ve-sidebar {
    position: static;
    top: auto;
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-about-text,
  .ve-whyus-content,
  .ve-contact-aside {
    padding-left: 0;
    margin-top: 32px;
  }

  .ve-about-img-stack,
  .ve-whyus-img-wrap {
    padding-right: 0;
  }

  .ve-process-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .ve-process-step {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .ve-process-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ve-nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ve-header .ve-brand-name,
  .ve-footer .ve-brand-name {
    font-size: 17px;
  }

  .ve-hero-left {
    padding: 58px 16px 42px;
  }

  .ve-hero-left h1,
  .ve-section-header h2,
  .ve-page-hero-content h1,
  .ve-about-text h2,
  .ve-whyus-content h2,
  .ve-contact-form-wrap h2 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ve-hero-left h1 {
    font-size: clamp(34px, 10vw, 42px);
    margin-bottom: 18px;
  }

  .ve-hero-left p {
    font-size: 15px;
    line-height: 1.65;
    max-width: none;
    margin-bottom: 28px;
  }

  .ve-hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 22px;
  }

  .ve-hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }

  .ve-hero .ve-hero-btns {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
  }

  .ve-btn-primary,
  .ve-btn-ghost,
  .ve-btn-white {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 14px;
  }

  .ve-hero .ve-hero-btns .ve-btn-primary,
  .ve-hero .ve-hero-btns .ve-btn-ghost {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    padding: 12px 10px;
    font-size: 13px;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(3, 29, 74, 0.18);
    backdrop-filter: blur(10px);
  }

  .ve-hero .ve-hero-btns .ve-btn-primary {
    background: linear-gradient(135deg, var(--nf-secondary) 0%, #2d9dff 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ve-hero .ve-hero-btns .ve-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .ve-hero .ve-hero-btns .ve-btn-primary:hover,
  .ve-hero .ve-hero-btns .ve-btn-ghost:hover {
    transform: translateY(-1px);
  }

  .ve-hero-right {
    display: none;
  }

  .ve-hero-img-accent {
    width: 130px;
    height: 95px;
    right: 18px;
    bottom: 18px;
  }

  .ve-float-card {
    top: 20px;
    right: 18px;
    padding: 10px 12px;
    gap: 9px;
  }

  .ve-float-card i {
    font-size: 20px;
  }

  .ve-float-card strong {
    font-size: 17px;
  }

  .ve-float-card span {
    font-size: 10px;
  }

  .ve-section {
    padding: 56px 0;
  }

  .ve-section-header {
    margin-bottom: 34px;
  }

  .ve-section-header h2 {
    font-size: 30px;
  }

  .ve-section-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ve-services-grid,
  .ve-testi-grid,
  .ve-counter-grid,
  .ve-mvv-grid,
  .ve-contact-cards-grid,
  .ve-form-row {
    grid-template-columns: 1fr !important;
  }

  .ve-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .ve-service-card,
  .ve-testi-card,
  .ve-contact-info-card,
  .ve-mvv-card,
  .ve-sidebar-widget,
  .ve-article-body,
  .ve-comment-form-wrap,
  .ve-contact-form-wrap {
    padding: 26px 18px;
  }

  .ve-service-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 10px;
    align-items: start;
    padding: 14px 12px;
    border-radius: 16px;
    min-height: 138px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,255,0.98) 100%);
    border: 1px solid rgba(11, 125, 233, 0.10);
    box-shadow: 0 14px 30px rgba(3, 29, 74, 0.08);
    align-content: start;
  }

  .ve-service-card::before {
    grid-column: 1 / -1;
    height: 2px;
    opacity: 0.85;
  }

  .ve-service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    font-size: 17px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(3, 29, 74, 0.12);
  }

  .ve-service-card h4 {
    font-size: 13px;
    line-height: 1.22;
    margin-bottom: 2px;
    color: var(--nf-primary-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
  }

  .ve-service-card p {
    display: none;
  }

  .ve-card-link {
    font-size: 11.5px;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--nf-secondary);
  }

  .ve-card-link i {
    font-size: 11px;
  }

  .ve-mvv-section {
    background: linear-gradient(180deg, #04142f 0%, #081d44 100%);
  }

  .ve-mvv-grid {
    gap: 12px;
  }

  .ve-mvv-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(135, 180, 255, 0.22);
    box-shadow: 0 18px 40px rgba(3, 29, 74, 0.14);
    padding: 22px 16px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(14px);
  }

  .ve-mvv-card:hover {
    background: rgba(255, 255, 255, 0.99);
    border-color: rgba(11, 125, 233, 0.30);
    transform: translateY(-2px);
  }

  .ve-mvv-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--nf-secondary) 0%, #7bc2ff 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(11, 125, 233, 0.25);
  }

  .ve-mvv-card h4 {
    color: var(--nf-primary-dark);
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .ve-mvv-card p {
    color: rgba(20, 32, 51, 0.78);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
  }

  .ve-counter-section,
  .ve-mvv-section,
  .ve-process-section,
  .ve-newsletter-section,
  .ve-footer {
    padding-top: 40px;
  }

  .ve-counter-item {
    padding: 24px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ve-counter-item:last-child,
  .ve-contact-info-card:last-child {
    border-bottom: none;
  }

  .ve-counter-item strong {
    font-size: 38px;
  }

  .ve-counter-item span {
    font-size: 20px;
  }

  .ve-page-hero {
    min-height: 270px;
    padding-bottom: 34px;
  }

  .ve-page-hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ve-page-hero-content h1 {
    font-size: 32px;
  }

  .ve-breadcrumb {
    flex-wrap: wrap;
    gap: 6px;
  }

  .ve-about-img-1,
  .ve-whyus-img-main,
  .ve-article-featured {
    min-height: 0;
  }

  .ve-about-img-1 {
    height: 300px;
  }

  .ve-about-img-2 {
    display: none;
  }

  .ve-whyus-img-main {
    height: 300px;
  }

  .ve-whyus-badge {
    padding: 14px 18px;
    min-width: 125px;
  }

  .ve-whyus-badge strong {
    font-size: 30px;
  }

  .ve-contact-form .ve-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ve-ca-hours ul li {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
    border: 1px solid rgba(11, 125, 233, 0.10);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,250,255,0.96) 100%);
    box-shadow: 0 10px 22px rgba(3, 29, 74, 0.05);
  }

  .ve-ca-hours ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(11, 125, 233, 0.10);
    color: var(--nf-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
  }

  .ve-ca-hours ul li strong {
    font-size: 13px;
    line-height: 1.35;
    color: var(--nf-primary-dark);
  }

  .ve-ca-hours {
    background: linear-gradient(180deg, #062763 0%, #03183f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(3, 29, 74, 0.22);
  }

  .ve-ca-hours h5 {
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }

  .ve-contact-cards-grid {
    gap: 16px;
  }

  .ve-contact-cards-section {
    overflow: hidden;
  }

  .ve-contact-cards-grid.ve-marquee-ready {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 14px;
    padding: 0 16px 10px;
    animation: ve-contact-marquee 24s linear infinite;
    will-change: transform;
  }

  .ve-contact-cards-grid.ve-marquee-ready:hover {
    animation-play-state: paused;
  }

  .ve-contact-cards-grid.ve-marquee-ready .ve-contact-info-card {
    flex: 0 0 min(84vw, 320px);
    min-width: min(84vw, 320px);
    padding: 22px 18px;
    text-align: left;
    background: linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(245,249,255,0.98) 100%);
    border: 1px solid rgba(11, 125, 233, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(3, 29, 74, 0.10);
  }

  .ve-contact-cards-grid.ve-marquee-ready .ve-contact-info-card:hover {
    transform: none;
    box-shadow: 0 18px 36px rgba(3, 29, 74, 0.12);
  }

  .ve-contact-cards-grid.ve-marquee-ready .ve-ci-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 14px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(3, 29, 74, 0.10);
  }

  .ve-contact-cards-grid.ve-marquee-ready .ve-contact-info-card h5 {
    font-size: 16px;
    line-height: 1.25;
    color: var(--nf-primary-dark);
    margin-bottom: 8px;
  }

  .ve-contact-cards-grid.ve-marquee-ready .ve-contact-info-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--nf-text);
    margin: 0;
  }

  .ve-contact-cards-grid.ve-marquee-ready .ve-contact-info-card small {
    display: block;
    margin-top: 4px;
    color: var(--nf-muted);
  }

  .ve-contact-cards-grid.ve-marquee-ready [data-marquee-clone="true"] {
    pointer-events: none;
  }

  .ve-newsletter-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .ve-nl-left {
    align-items: flex-start;
    gap: 14px;
  }

  .ve-nl-left i {
    font-size: 32px;
  }

  .ve-nl-left h3 {
    font-size: 19px;
  }

  .ve-nl-form {
    flex-direction: column;
    width: 100%;
    border: 0;
    overflow: visible;
    gap: 10px;
  }

  .ve-nl-form input,
  .ve-nl-form button {
    width: 100%;
    min-height: 48px;
    border-radius: 8px;
  }

  .ve-footer .mb-50 {
    margin-bottom: 28px;
  }

  .ve-footer-title {
    font-size: 14px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .ve-footer-links li {
    margin-bottom: 8px;
  }

  .ve-footer-links li a,
  .ve-footer-contact li {
    font-size: 13px;
    line-height: 1.55;
  }

  .ve-footer-bottom {
    margin-top: 12px;
    padding: 16px 0 18px;
    background: rgba(0, 0, 0, 0.35);
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .ve-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .ve-footer-bottom-inner p {
    line-height: 1.7;
    word-break: break-word;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
  }

  .ve-footer-bottom-inner ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .ve-footer-bottom-inner ul li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  .ve-footer-contact li {
    word-break: break-word;
  }

  .ve-comment,
  .ve-testi-author,
  .ve-check-item,
  .ve-login-support {
    align-items: flex-start;
  }

  .ve-comment {
    flex-direction: column;
  }

  .ve-comment-reply {
    margin-left: 0;
  }

  .ve-ca-social .ve-social {
    width: 100%;
  }

  .ve-ca-social .ve-social a {
    flex: 1 1 100%;
  }

  .ve-pagination {
    justify-content: center;
  }

  .ve-login-shell {
    padding: 14px;
    border-radius: 22px;
  }

  .ve-login-form-card {
    padding: 26px 18px;
    border-radius: 18px;
  }

  .ve-login-form-card h2 {
    font-size: 26px;
  }

  .ve-login-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ve-login-actions .ve-social a {
    min-width: 100%;
  }

  .ve-login-support {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .ve-header .ve-brand-name,
  .ve-footer .ve-brand-name {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .ve-hero-right {
    height: 230px;
  }

  .ve-about-img-stack,
  .ve-whyus-img-wrap {
    padding-bottom: 20px;
  }

  .ve-cta-banner {
    padding: 56px 0;
  }

  .ve-cta-content h2 {
    font-size: 28px;
  }

  .ve-contact-form-wrap h2 {
    font-size: 28px;
  }

  .ve-login-hero {
    min-height: 260px;
  }
}
