/* ── 1. NAVBAR ── */

.vr-nav .container {
  max-width: 1320px;
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1024px) {
  .vr-nav .container { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 767px) {
  .vr-nav .container { padding-left: 20px; padding-right: 20px; }
}

.vr-nav-link.dropdown-toggle::after {
  display: none;
}

.btn-vr-industries {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--vr-ink);
  border: 1.5px solid rgba(17,17,17,0.18);
  padding: 9px 18px;
  border-radius: var(--vr-radius-pill);
  font-family: var(--vr-font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--vr-transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-vr-industries:hover,
.btn-vr-industries.show {
  background: var(--vr-ink);
  color: #ffffff;
  border-color: var(--vr-ink);
}

.btn-vr-industries.dropdown-toggle::after {
  display: none;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeDown 0.22s ease forwards;
  }
  .nav-item.dropdown > .dropdown-menu {
    padding-top: 4px;
  }
}

.vr-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--vr-border);
  transition: padding 0.35s ease, background 0.35s ease,
              box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  padding-top: 16px;
  padding-bottom: 16px;
}

.vr-nav.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-bottom-color: transparent;
}

.vr-nav-logo-name {
  font-family: var(--vr-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--vr-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.vr-nav-logo-name span {
  color: var(--vr-blue);
}

.vr-nav-logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--vr-slate);
  opacity: 0.7;
  font-weight: 600;
  margin-top: 1px;
}

.vr-nav-link {
  font-family: var(--vr-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--vr-ink);
  padding: 10px 16px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.01em;
}

.vr-nav-link:hover {
  color: var(--vr-blue);
  background: var(--vr-off);
}

.vr-nav-link.active {
  color: var(--vr-blue);
  font-weight: 700;
}

/* ── SIMPLE INDUSTRIES DROPDOWN ── */
.vr-simple-dropdown {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--vr-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  min-width: 260px;
  animation: fadeDown 0.22s ease forwards;
}
.vr-simple-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--vr-ink);
  transition: background 0.18s ease;
}
.vr-simple-dropdown-item:hover {
  background: var(--vr-off);
  color: var(--vr-ink);
}
.vr-sdd-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(215,40,33,0.06);
  border: 1px solid rgba(215,40,33,0.10);
  color: var(--vr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.vr-simple-dropdown-item:hover .vr-sdd-icon {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
  color: #ffffff;
}
.vr-sdd-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.2;
}
.vr-sdd-desc {
  font-size: 11px;
  color: var(--vr-mist);
  margin-top: 2px;
}

/* Dropdown */
.vr-dropdown {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--vr-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  padding: 8px;
  min-width: 280px;
  animation: fadeDown 0.22s ease forwards;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vr-dropdown-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 10px;
  transition: background 0.18s ease;
  text-decoration: none;
  color: var(--vr-ink);
}

.vr-dropdown-item:hover {
  background: var(--vr-off);
}

.vr-dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-ink);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--vr-transition);
}

.vr-dropdown-item:hover .vr-dd-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-dd-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vr-ink);
  line-height: 1.3;
}

.vr-dd-sub {
  font-size: 11.5px;
  color: var(--vr-mist);
  line-height: 1.4;
  margin-top: 2px;
}

/* Mobile drawer */
.vr-drawer {
  width: 100%;
  background: #ffffff;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.vr-drawer.open {
  transform: translateY(0);
}

.vr-drawer-item {
  padding: 14px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--vr-border);
  color: var(--vr-ink);
  display: block;
  text-decoration: none;
}

.vr-drawer-item:hover {
  color: var(--vr-blue);
}


/* ── 2. PRODUCT CARD ── */
.vr-prod-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--vr-border);
  overflow: hidden;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.4, 1),
              box-shadow 0.38s cubic-bezier(0.2, 0.8, 0.4, 1),
              border-color 0.38s ease;
}

.vr-prod-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.12);
}

.vr-prod-card-img {
  /* height: 280px; */
  position: relative;
  overflow: hidden;
  background: var(--vr-off);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.88); */
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.4, 1), filter 0.5s ease;
}

.vr-prod-card:hover .vr-prod-card-img img {
  transform: scale(1.05);
  filter: brightness(0.80);
}

.vr-prod-card-img .vr-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f0efed;
  color: rgba(0,0,0,0.20);
}

.vr-prod-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(17,17,17,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 40px;
  z-index: 2;
}

.vr-prod-card-body {
  padding: 28px 28px 32px;
}

.vr-prod-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-ink);
  font-size: 20px;
  margin-bottom: 18px;
}

.vr-prod-card-title {
  font-family: var(--vr-font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.vr-prod-card-desc {
  font-size: 14px;
  color: var(--vr-slate);
  line-height: 1.75;
  margin-bottom: 20px;
  text-align: justify;
}

.vr-prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--vr-ink);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.2s ease;
  letter-spacing: 0.3px;
}

.vr-prod-card-link:hover {
  gap: 12px;
  color: var(--vr-blue);
}

.vr-prod-card-link i {
  transition: transform 0.28s ease;
}

.vr-prod-card:hover .vr-prod-card-link i {
  transform: translateX(5px);
}


/* ── 3. FEATURE CARD ── */
.vr-feat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  border: 1px solid var(--vr-border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.4, 1),
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.vr-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.10);
}

.vr-feat-card-num {
  font-family: var(--vr-font-heading);
  font-size: 56px;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.vr-feat-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-ink);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vr-feat-card:hover .vr-feat-card-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-feat-card-tag {
  display: block;
  width: 100%;
  font-size: 10px;
  color: var(--vr-mist);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding-top: 14px;
  border-top: 1px solid var(--vr-border);
  margin-top: 16px;
}


/* ── 4. STAT ITEM ── */
.vr-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  height: 100%;
}

.vr-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.40);
  font-size: 18px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.vr-stat-num {
  font-family: var(--vr-font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.vr-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 10px;
}

.vr-stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.20);
  margin-top: 5px;
  line-height: 1.55;
}


/* ── 5. APPLICATION CARD ── */
.vr-app-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  position: relative;
  cursor: pointer;
  border: 0;
  text-decoration: none;
  transition: transform 0.40s cubic-bezier(0.2, 0.8, 0.4, 1),
              box-shadow 0.40s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.vr-app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.22);
}

.vr-app-card img,
.vr-app-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.80);
  transition: transform 0.6s ease, filter 0.5s ease;
  display: block;
}

.vr-app-card:hover img,
.vr-app-card:hover .vr-app-card-bg {
  filter: brightness(0.58) saturate(0.78);
  transform: scale(1.06);
}

.vr-app-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.90) 0%,
    rgba(10,10,10,0.28) 55%,
    rgba(10,10,10,0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vr-app-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transition: transform 0.35s ease;
  z-index: 2;
}

.vr-app-card:hover .vr-app-content {
  transform: translateY(-6px);
}

.vr-app-label {
  font-size: 9.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.vr-app-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.vr-app-title {
  font-family: var(--vr-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.vr-app-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.vr-app-card:hover .vr-app-link {
  opacity: 1;
  transform: translateY(0);
  color: #ffffff;
}


/* ── 6. PROCESS STEPS ── */
.vr-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.vr-process-steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--vr-border);
  z-index: 0;
}

.vr-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.vr-step-outer {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid var(--vr-border);
  background: #ffffff;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vr-step-outer:hover,
.vr-step:hover .vr-step-outer {
  border-color: rgba(0,0,0,0.20);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.vr-step-inner {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--vr-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.vr-step:hover .vr-step-inner {
  transform: scale(1.07);
}

.vr-step-inner i {
  font-size: 24px;
  color: #ffffff;
}

.vr-step-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--vr-blue);
  font-size: 9px;
  font-weight: 800;
  color: #ffffff;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.vr-step h5 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.vr-step p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.65;
  margin: 0;
}


/* ── 7. CTA BAND ── */
.vr-cta-band {
  background: #111111;
  padding: 88px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
}

/* background image at low opacity */
.vr-cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/solar.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* subtle grid texture — sits above bg image */
.vr-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 1;
}

/* red accent line top */
.vr-cta-accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--vr-blue);
  border-radius: 2px;
  margin-bottom: 24px;
}

.vr-cta-band-title {
  font-family: var(--vr-font-heading);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  position: relative;
  z-index: 1;
}

.vr-cta-band-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 12px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.vr-cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  position: relative;
  z-index: 1;
}

.vr-cta-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.30);
}


/* ── 8. FOOTER ── */
.vr-footer {
  background: #111111;
  padding: 80px 0 36px;
}

.vr-footer-brand-name {
  font-family: var(--vr-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.vr-footer-brand-name img {
  height: 20px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.90;
}

.vr-footer-brand-name span {
  color: var(--vr-blue);
}

.vr-footer-tagline {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
  display: block;
  margin-top: 3px;
}

.vr-footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.80;
  max-width: 280px;
}

.vr-footer-contact-item {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  text-decoration: none;
}

.vr-footer-contact-item:hover {
  color: var(--vr-blue);
}

.vr-footer-contact-item i {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.vr-footer-col h5 {
  font-family: var(--vr-font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-weight: 700;
}

.vr-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vr-footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.vr-footer-col a:hover {
  color: var(--vr-blue);
}

.vr-footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 56px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.vr-footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.vr-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.vr-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  text-decoration: none;
  transition: var(--vr-transition);
}

.vr-footer-social a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.80);
  transform: translateY(-2px);
}


/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .vr-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vr-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .vr-process-steps::before {
    display: none;
  }
  .vr-cta-band {
    grid-template-columns: 1fr;
    padding: 56px 40px;
    gap: 36px;
  }
  .vr-cta-band-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .vr-prod-grid {
    grid-template-columns: 1fr;
  }
  .vr-process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vr-cta-band {
    padding: 48px 20px;
  }
  .vr-cta-band-actions {
    flex-direction: column;
  }
  .vr-app-card {
    height: 220px;
  }
  .vr-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── 9. GET QUOTE MODAL ── */
.vr-modal-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--vr-slate);
  margin-bottom: 6px;
}

.vr-modal-input {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--vr-border);
  border-radius: var(--vr-radius-sm);
  font-family: var(--vr-font-body);
  font-size: 14px;
  color: var(--vr-ink);
  background: var(--vr-off);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.vr-modal-input:focus {
  border-color: var(--vr-ink);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}

.vr-modal-input::placeholder {
  color: var(--vr-mist);
  opacity: 1;
}

.modal-backdrop {
  z-index: 1040;
}

.modal {
  z-index: 1050;
}

@media (max-width: 575px) {
  .vr-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ── SPEC TABLE ── */
.vr-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--vr-radius-md);
  overflow: hidden;
  border: 1px solid var(--vr-border);
  font-size: 14px;
}

.vr-spec-table thead th {
  background: var(--vr-ink);
  color: rgba(255,255,255,0.80);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  border: none;
}

.vr-spec-table tbody tr {
  transition: background 0.2s ease;
}

.vr-spec-table tbody tr:hover {
  background: var(--vr-off);
}

.vr-spec-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.015);
}

.vr-spec-table tbody tr:nth-child(even):hover {
  background: var(--vr-off);
}

.vr-spec-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--vr-border);
  color: var(--vr-slate);
  vertical-align: middle;
}

.vr-spec-table td:first-child {
  font-weight: 700;
  color: var(--vr-ink);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .vr-spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border-radius: var(--vr-radius-md);
  }
  .vr-spec-table {
    font-size: 12px;
    min-width: 480px;
  }
  .vr-spec-table thead th {
    padding: 10px 12px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .vr-spec-table td {
    padding: 10px 12px;
  }
  .vr-spec-table td:first-child {
    white-space: normal;
    min-width: 110px;
  }
}

.vr-spec-table td:last-child {
  font-size: 12px;
  color: var(--vr-mist);
}

.vr-spec-table tbody tr:last-child td {
  border-bottom: none;
}


/* ── PRODUCT HERO STATS STRIP ── */
.vr-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.vr-hero-stat-val {
  font-family: var(--vr-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.vr-hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
}


/* ── LOGO IMAGE ── */
.vr-nav-logo img {
  height: 20px;
  width: auto;
  display: block;
}


/* ── HERO CAROUSEL ── */
.vr-hero-carousel {
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
.vr-hero-carousel .carousel-inner,
.vr-hero-carousel .carousel-item {
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
.vr-hero-carousel .carousel-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.vr-hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.25) 55%,
    rgba(10,10,10,0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .vr-hero-carousel .carousel-item {
    background-attachment: fixed;
  }
}
.vr-hero-row {
  min-height: 880px;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) { .vr-hero-row { min-height: 700px; } }
@media (max-width: 767px)  { .vr-hero-row { min-height: 580px; } }

.vr-hero-carousel .vr-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(100px, 12vh, 140px);
}
.vr-hero-carousel .vr-container {
  width: 100%;
}
.vr-hero-carousel .carousel-indicators {
  z-index: 3;
  bottom: 36px;
  gap: 8px;
  margin: 0;
  justify-content: center;
}
.vr-hero-carousel .carousel-indicators [data-bs-target] {
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.22);
  border: 0;
  transition: all 0.45s ease;
  opacity: 1;
  margin: 0 4px;
}
.vr-hero-carousel .carousel-indicators .active {
  background: #ffffff;
  width: 64px;
}
.vr-hero-carousel .carousel-control-prev,
.vr-hero-carousel .carousel-control-next {
  width: 60px;
  z-index: 3;
  opacity: 0.35;
  transition: opacity 0.25s ease;
}
.vr-hero-carousel .carousel-control-prev:hover,
.vr-hero-carousel .carousel-control-next:hover {
  opacity: 0.85;
}

.vr-slide-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 14px;
  border-radius: 40px;
  background: rgba(255,255,255,0.06);
}

.vr-hero-carousel .vr-h1 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.10;
  margin-bottom: 20px;
}

.carousel-item.active .vr-slide-content > .vr-container > .row > div {
  animation: vrSlideFadeUp 0.75s ease forwards;
}
@keyframes vrSlideFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .vr-hero-carousel,
  .vr-hero-carousel .carousel-inner,
  .vr-hero-carousel .carousel-item {
    height: 88vh;
    min-height: 520px;
  }
  .vr-hero-carousel .vr-slide-content {
    padding-top: clamp(50px, 10vh, 80px);
    padding-bottom: 70px;
  }
  .vr-hero-carousel .carousel-control-prev,
  .vr-hero-carousel .carousel-control-next {
    display: none;
  }
}
@media (max-width: 767px) {
  .vr-hero-carousel,
  .vr-hero-carousel .carousel-inner,
  .vr-hero-carousel .carousel-item {
    height: 92vh;
    min-height: 500px;
  }
  .vr-hero-carousel .vr-slide-content {
    padding-top: 48px;
    padding-bottom: 80px;
    align-items: flex-start;
  }
}


/* ── HERO animated accent line ── */
.vr-slide-line {
  display: block;
  width: 0;
  height: 2px;
  background: var(--vr-blue);
  border-radius: 2px;
  margin-bottom: 22px;
  animation: none;
}
.carousel-item.active .vr-slide-line {
  animation: vrLineExpand 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
@keyframes vrLineExpand {
  from { width: 0; opacity: 0; }
  to   { width: 56px; opacity: 1; }
}


/* ── BRAND / WHY SECTION ── */
.vr-brand-section {
  background: #0e0e0e;
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}
.vr-brand-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.vr-brand-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vr-brand-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--vr-blue);
  border-radius: 2px;
  flex-shrink: 0;
}
.vr-brand-headline {
  font-family: var(--vr-font-heading);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.vr-brand-headline em {
  color: var(--vr-blue);
  font-style: normal;
  font-weight: 800;
}
.vr-brand-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.42);
  line-height: 1.80;
  max-width: 430px;
  margin-bottom: 36px;
}
.vr-brand-cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}
.vr-brand-cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.vr-brand-cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vr-blue);
  flex-shrink: 0;
}
.vr-brand-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vr-brand-stat-val {
  font-family: var(--vr-font-heading);
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.vr-brand-stat-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}
.vr-brand-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 210px 190px;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.vr-brand-mosaic-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.vr-brand-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) saturate(0.72);
  transition: transform 0.55s ease, filter 0.55s ease;
}
.vr-brand-mosaic-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.78) saturate(0.82);
}
.vr-brand-mosaic-item.tall {
  grid-row: span 2;
}
.vr-brand-mosaic-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.75);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
}


/* ── MANUFACTURING FACILITY SECTION ── */
.vr-mfg-section {
  background: #fafafa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vr-mfg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.vr-mfg-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 230px 185px;
  gap: 12px;
}
.vr-mfg-img {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.vr-mfg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(0.88);
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
}
.vr-mfg-img:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(0.92);
}
.vr-mfg-img.span-full { grid-column: span 2; }
.vr-mfg-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.78);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
}
.vr-mfg-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--vr-border);
  transition: transform 0.2s ease;
}
.vr-mfg-feat:last-child { border-bottom: 0; padding-bottom: 0; }
.vr-mfg-feat:hover { transform: translateX(4px); }
.vr-mfg-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-ink);
  font-size: 17px;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.vr-mfg-feat:hover .vr-mfg-feat-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}
.vr-mfg-feat-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 3px;
  line-height: 1.3;
}
.vr-mfg-feat-desc {
  font-size: 13px;
  color: var(--vr-slate);
  line-height: 1.65;
}


/* ── Certifications strip ── */
.vr-cert-strip {
  background: #111111;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.vr-cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.vr-cert-item:last-child { border-right: 0; }
.vr-cert-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  flex-shrink: 0;
}
.vr-cert-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}
.vr-cert-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.24);
  margin-top: 2px;
}


/* ── Why section ── */
.vr-why-section {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.vr-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.vr-why-section .vr-container { position: relative; z-index: 1; }


/* ── Modal dark panel ── */
.vr-modal-charcoal {
  background: linear-gradient(150deg, #141414, #1c1c1c);
}


/* ── Spec badge pills ── */
.vr-spec-tag {
  display: inline-block;
  font-size: 10px;
  padding: 4px 11px;
  border-radius: 30px;
  background: var(--vr-off);
  color: var(--vr-slate);
  font-weight: 600;
  border: 1px solid var(--vr-border);
  letter-spacing: 0.2px;
}


/* ── FULL-WIDTH BG HERO ── */
.vr-hero-fullbg {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.vr-hero-fullbg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(30,30,30,0.65) 55%, rgba(10,10,10,0.78) 100%);
  z-index: 0;
  pointer-events: none;
}
.vr-hero-fullbg .vr-container {
  position: relative;
  z-index: 1;
}


/* ── Trust dark bar ── */
.vr-trust-dark {
  background: #141414;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0;
}
.vr-trust-dark .vr-trust-item {
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.vr-trust-dark .vr-trust-item:last-child { border-right: 0; }
.vr-trust-dark .vr-trust-icon {
  color: rgba(255,255,255,0.28);
  font-size: 20px;
  display: block;
  margin-bottom: 7px;
}
.vr-trust-dark .vr-trust-val {
  font-family: var(--vr-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.vr-trust-dark .vr-trust-label {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.28);
  margin-top: 4px;
}


/* ══════════════════════════════════════
   MEGA MENU — (nav.scrolled defined at top)
══════════════════════════════════════ */


/* ══════════════════════════════════════
   MEGA MENU
══════════════════════════════════════ */
.vr-mega-menu {
  width: 480px;
  left: 0%;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--vr-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  padding: 12px;
  animation: fadeDown 0.22s ease forwards;
}

.vr-mega-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vr-mega-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--vr-ink);
  transition: background 0.18s ease;
}

.vr-mega-item:hover {
  background: var(--vr-off);
}

.vr-mega-thumb {
  width: 64px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
}

.vr-mega-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.8);
  transition: transform 0.35s ease;
}

.vr-mega-item:hover .vr-mega-thumb img {
  transform: scale(1.08);
}

.vr-mega-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vr-mega-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--vr-blue);
}

.vr-mega-title {
  font-family: var(--vr-font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.3;
}

.vr-mega-desc {
  font-size: 11.5px;
  color: var(--vr-mist);
  line-height: 1.4;
}

.vr-mega-arrow {
  font-size: 13px;
  color: var(--vr-mist);
  transition: transform 0.25s ease, color 0.2s ease;
  flex-shrink: 0;
}

.vr-mega-item:hover .vr-mega-arrow {
  transform: translateX(4px);
  color: var(--vr-ink);
}

@media (max-width: 767px) {
  .vr-mega-menu {
    width: 100%;
    left: 0;
    transform: none;
  }
}


/* ══════════════════════════════════════
   NAV PHONE
══════════════════════════════════════ */
.vr-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vr-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vr-nav-phone:hover { color: var(--vr-blue); }
.vr-nav-phone i { font-size: 13px; }


/* ══════════════════════════════════════
   HERO — SLIDE EYEBROW
══════════════════════════════════════ */
.vr-slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.vr-slide-eyebrow i { font-size: 12px; color: var(--vr-blue); }


/* ══════════════════════════════════════
   HERO FLOATING TRUST CARDS
══════════════════════════════════════ */
.vr-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 16px 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.vr-trust-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}
.vr-trust-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--vr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}
.vr-trust-card-val {
  font-family: var(--vr-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.vr-trust-card-label {
  font-size: 10.5px;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
  line-height: 1.3;
}


/* ══════════════════════════════════════
   FLOATING SPEC PANEL (Product hero)
══════════════════════════════════════ */
.vr-spec-panel {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  overflow: hidden;
}

.vr-spec-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.vr-spec-panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

.vr-spec-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--vr-blue);
  background: rgba(215,40,33,0.15);
  border: 1px solid rgba(215,40,33,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.vr-spec-panel-body {
  padding: 8px 0;
}

.vr-spec-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}

.vr-spec-panel-key {
  font-size: 11.5px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.vr-spec-panel-val {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}


/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.vr-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13.5px;
  background: #ffffff;
}

.vr-compare-table thead tr {
  background: var(--vr-ink);
}

.vr-compare-table thead th {
  padding: 16px 20px;
  color: rgba(255,255,255,0.70);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .vr-compare-table thead th {
    white-space: normal;
    padding: 10px 10px;
    font-size: 9px;
    letter-spacing: 0.6px;
  }
  .vr-compare-table td {
    padding: 10px 10px;
    font-size: 12px;
  }
  .vr-compare-param {
    white-space: normal;
    font-size: 11px;
  }
  .vr-compare-badge {
    font-size: 9.5px;
    padding: 2px 7px;
  }
  /* Constrain all table scroll wrappers to viewport */
  [style*="overflow-x:auto"] {
    max-width: calc(100vw - 32px) !important;
    -webkit-overflow-scrolling: touch;
  }
}

.vr-compare-table thead th:first-child { border-radius: 0; }

.vr-compare-table tbody tr {
  transition: background 0.18s ease;
}

.vr-compare-table tbody tr:hover { background: var(--vr-off); }

.vr-compare-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.015); }
.vr-compare-table tbody tr:nth-child(even):hover { background: var(--vr-off); }

.vr-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--vr-border);
  color: var(--vr-slate);
  vertical-align: middle;
}

.vr-compare-param {
  font-weight: 700;
  color: var(--vr-ink);
  white-space: nowrap;
  font-size: 12.5px;
}

.vr-compare-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--vr-ink);
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  padding: 3px 10px;
  border-radius: 20px;
}

.vr-compare-table tbody tr:last-child td { border-bottom: 0; }


/* ══════════════════════════════════════
   DOWNLOAD CARDS
══════════════════════════════════════ */
.vr-download-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 16px;
  padding: 20px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.vr-download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.10);
}

.vr-download-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--vr-ink);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.vr-download-card:hover .vr-download-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-download-body {
  flex: 1;
  min-width: 0;
}

.vr-download-type {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vr-blue);
  margin-bottom: 4px;
}

.vr-download-title {
  font-family: var(--vr-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.vr-download-desc {
  font-size: 11.5px;
  color: var(--vr-mist);
  line-height: 1.5;
}

.vr-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--vr-ink);
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius-pill);
  padding: 7px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.vr-download-btn:hover {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}


/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.vr-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vr-accordion-item {
  border: none;
  border-bottom: 1px solid var(--vr-border);
  background: transparent;
}

.vr-accordion-btn {
  font-family: var(--vr-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vr-ink);
  background: transparent;
  padding: 20px 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  text-align: left;
}

.vr-accordion-btn:not(.collapsed) {
  color: var(--vr-blue);
  background: transparent;
  box-shadow: none;
}

.vr-accordion-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23111111' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-size: 14px;
  transition: transform 0.25s ease;
}

.vr-accordion-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23D72821' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
  transform: rotate(0);
}

.vr-accordion-body {
  padding: 0 0 20px;
  font-size: 14.5px;
  color: var(--vr-slate);
  line-height: 1.8;
}


/* ══════════════════════════════════════
   HERO TRUST BAR
══════════════════════════════════════ */
.vr-hero-trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--vr-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.vr-hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vr-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid var(--vr-border);
  transition: background 0.2s ease;
}

.vr-hero-trust-item:hover { background: var(--vr-off); }

.vr-hero-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--vr-blue);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.vr-hero-trust-item:hover .vr-hero-trust-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vr-hero-trust-val {
  font-family: var(--vr-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.2;
}

.vr-hero-trust-sub {
  font-size: 11px;
  color: var(--vr-mist);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .vr-hero-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vr-hero-trust-item:nth-child(2) { border-right: 0; }
  .vr-hero-trust-item:nth-child(3) { border-top: 1px solid var(--vr-border); }
  .vr-hero-trust-item:nth-child(4) { border-top: 1px solid var(--vr-border); border-right: 0; }
}

@media (max-width: 575px) {
  .vr-hero-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vr-hero-trust-item { padding: 16px 16px; gap: 10px; }
  .vr-hero-trust-icon { width: 36px; height: 36px; font-size: 15px; border-radius: 9px; }
  .vr-hero-trust-val { font-size: 12px; }
  .vr-hero-trust-sub { font-size: 10px; }
}


/* ══════════════════════════════════════
   NATIONWIDE IMPACT SECTION
══════════════════════════════════════ */
.vr-impact-section {
  background: #ffffff;
  padding: 100px 0;
  border-bottom: 1px solid var(--vr-border);
}

.vr-impact-stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--vr-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vr-impact-num {
  font-family: var(--vr-font-heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: var(--vr-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vr-impact-num span {
  color: var(--vr-blue);
}

.vr-impact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vr-ink);
  margin-top: 12px;
}

.vr-impact-desc {
  font-size: 12.5px;
  color: var(--vr-mist);
  margin-top: 6px;
  line-height: 1.55;
  max-width: 180px;
}

@media (max-width: 767px) {
  .vr-impact-stat {
    border-bottom: 1px solid var(--vr-border);
  }
}


/* ══════════════════════════════════════
   TRUSTED BY STRIP
══════════════════════════════════════ */
.vr-trusted-section {
  background: #fafafa;
  padding: 56px 0;
  border-bottom: 1px solid var(--vr-border);
}

.vr-trusted-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vr-mist);
  margin: 0;
}

.vr-trusted-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.vr-trusted-item {
  flex: 1;
  min-width: 140px;
  padding: 16px 24px;
  border-right: 1px solid var(--vr-border);
}

.vr-trusted-item:last-child { border-right: 0; }

.vr-trusted-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 0.25s ease;
}

.vr-trusted-logo:hover { opacity: 0.65; }

.vr-trusted-logo i {
  font-size: 24px;
  color: var(--vr-ink);
}

.vr-trusted-logo span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vr-ink);
  text-align: center;
}


/* ══════════════════════════════════════
   WHY TOTAL STEELS — NUMBERED CARDS
══════════════════════════════════════ */
.vr-why-card {
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.38s cubic-bezier(0.2,0.8,0.4,1),
              box-shadow 0.38s cubic-bezier(0.2,0.8,0.4,1),
              border-color 0.3s ease;
}

.vr-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.10);
}

.vr-why-num {
  font-family: var(--vr-font-heading);
  font-size: 72px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.03em;
}

.vr-why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-ink);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vr-why-card:hover .vr-why-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-why-title {
  font-family: var(--vr-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  line-height: 1.35;
}

.vr-why-desc {
  font-size: 13.5px;
  color: var(--vr-slate);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}


/* ══════════════════════════════════════
   NEW PROCESS TIMELINE
══════════════════════════════════════ */
.vr-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}

.vr-tl-step {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.vr-tl-num {
  font-family: var(--vr-font-heading);
  font-size: 56px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: -12px;
  position: relative;
  z-index: 0;
  user-select: none;
}

.vr-tl-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--vr-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  transition: background 0.28s ease, transform 0.28s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.vr-tl-step:hover .vr-tl-icon {
  background: var(--vr-blue);
  transform: translateY(-4px);
}

.vr-tl-title {
  font-family: var(--vr-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 8px;
}

.vr-tl-desc {
  font-size: 12.5px;
  color: var(--vr-mist);
  line-height: 1.65;
  margin: 0;
}

.vr-tl-connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: var(--vr-border);
  margin-top: 56px;
  align-self: flex-start;
}

@media (max-width: 991px) {
  .vr-timeline { gap: 24px 0; }
  .vr-tl-connector { display: none; }
  .vr-tl-step { min-width: 120px; }
}

@media (max-width: 575px) {
  .vr-timeline { flex-direction: column; align-items: center; gap: 32px; }
  .vr-tl-step { max-width: 100%; width: 100%; }
}


/* ══════════════════════════════════════
   FEATURED PROJECTS SECTION
══════════════════════════════════════ */
.vr-project-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--vr-border);
  overflow: hidden;
  height: 100%;
  transition: transform 0.38s cubic-bezier(0.2,0.8,0.4,1),
              box-shadow 0.38s cubic-bezier(0.2,0.8,0.4,1),
              border-color 0.3s ease;
}

.vr-project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.11);
  border-color: rgba(0,0,0,0.10);
}

.vr-project-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vr-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.4,1), filter 0.5s ease;
}

.vr-project-card:hover .vr-project-img img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.vr-project-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17,17,17,0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.12);
}

.vr-project-body {
  padding: 24px 24px 28px;
}

.vr-project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.vr-project-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--vr-mist);
  font-weight: 600;
}

.vr-project-meta i { font-size: 11px; }

.vr-project-title {
  font-family: var(--vr-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.vr-project-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--vr-border);
  border-bottom: 1px solid var(--vr-border);
  margin-bottom: 16px;
}

.vr-project-spec {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.vr-project-spec-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vr-mist);
  flex-shrink: 0;
}

.vr-project-spec-val {
  font-size: 12.5px;
  color: var(--vr-ink);
  font-weight: 600;
  text-align: right;
}

.vr-project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vr-ink);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.25s ease, color 0.2s ease;
}

.vr-project-link:hover {
  gap: 10px;
  color: var(--vr-blue);
}

.vr-project-card:hover .vr-project-link i {
  transform: translateX(4px);
}

.vr-project-link i {
  transition: transform 0.25s ease;
}


/* ══════════════════════════════════════
   COMPANY TIMELINE
══════════════════════════════════════ */
.vr-ct-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.vr-ct-item {
  display: grid;
  grid-template-columns: 80px 60px 1fr;
  align-items: flex-start;
  gap: 0;
}

.vr-ct-year-col {
  padding-top: 12px;
  text-align: right;
  padding-right: 20px;
}

.vr-ct-year {
  font-family: var(--vr-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--vr-ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.vr-ct-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14px;
}

.vr-ct-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--vr-border);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
  transition: border-color 0.25s ease;
  z-index: 1;
}

.vr-ct-item:hover .vr-ct-dot {
  border-color: var(--vr-blue);
}

.vr-ct-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: var(--vr-border);
  margin-top: 6px;
}

.vr-ct-item:last-child .vr-ct-line { display: none; }

.vr-ct-content-col {
  padding-left: 24px;
  padding-bottom: 48px;
}

.vr-ct-item:last-child .vr-ct-content-col { padding-bottom: 0; }

.vr-ct-card {
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 16px;
  padding: 24px 28px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vr-ct-item:hover .vr-ct-card {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateX(4px);
}

.vr-ct-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vr-slate);
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.vr-ct-title {
  font-family: var(--vr-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--vr-ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.vr-ct-desc {
  font-size: 13.5px;
  color: var(--vr-slate);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 575px) {
  .vr-ct-item {
    grid-template-columns: 56px 40px 1fr;
  }
  .vr-ct-year { font-size: 16px; }
  .vr-ct-content-col { padding-left: 12px; padding-bottom: 32px; }
}


/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.vr-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.vr-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: rgba(215,40,33,0.15);
}

.vr-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--vr-blue);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

.vr-contact-card:hover .vr-contact-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vr-mist);
  margin-bottom: 4px;
}

.vr-contact-card-val {
  font-family: var(--vr-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.3;
  text-decoration: none;
}

.vr-contact-card-val:hover { color: var(--vr-blue); }

.vr-contact-card-sub {
  font-size: 12px;
  color: var(--vr-mist);
  margin-top: 2px;
}

/* Contact form */
.vr-cform-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--vr-slate);
  margin-bottom: 7px;
}

.vr-cform-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--vr-border);
  border-radius: var(--vr-radius-sm);
  font-family: var(--vr-font-body);
  font-size: 14px;
  color: var(--vr-ink);
  background: var(--vr-off);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.vr-cform-input:focus {
  border-color: var(--vr-ink);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}

.vr-cform-input::placeholder { color: var(--vr-mist); }


/* ══════════════════════════════════════
   CONTACT PAGE — CONTACT CARDS
══════════════════════════════════════ */
.vr-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: var(--vr-transition);
}

.vr-contact-card:hover {
  border-color: var(--vr-blue);
  box-shadow: 0 8px 28px rgba(215,40,33,0.08);
  transform: translateY(-3px);
}

.vr-contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(215,40,33,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vr-blue);
  font-size: 18px;
}

.vr-contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vr-mist);
  margin-bottom: 4px;
}

.vr-contact-card-val {
  font-family: var(--vr-font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--vr-ink);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}

.vr-contact-card-val:hover { color: var(--vr-blue); }

.vr-contact-card-sub {
  font-size: 11.5px;
  color: var(--vr-mist);
  margin-top: 2px;
}


/* ══════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════ */
.vr-blog-filter-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vr-blog-featured {
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--vr-shadow-sm);
}

.vr-blog-card {
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: var(--vr-transition);
}

.vr-blog-card:hover {
  border-color: var(--vr-blue);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-6px);
}

.vr-blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.vr-blog-card:hover .vr-blog-img img {
  transform: scale(1.04);
}

.vr-blog-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--vr-blue);
  color: #ffffff;
  border-radius: 30px;
  padding: 4px 12px;
}

.vr-blog-tag--over {
  position: absolute;
  top: 14px;
  left: 14px;
}

.vr-blog-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vr-blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.vr-blog-meta span {
  font-size: 11px;
  color: var(--vr-mist);
  display: flex;
  align-items: center;
  gap: 4px;
}

.vr-blog-title {
  font-family: var(--vr-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.4;
  margin-bottom: 10px;
}

.vr-blog-excerpt {
  font-size: 13px;
  color: var(--vr-slate);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.vr-blog-read-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--vr-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.vr-blog-read-more:hover {
  color: var(--vr-ink);
  gap: 10px;
}


/* ══════════════════════════════════════
   BLOG CATEGORIES
══════════════════════════════════════ */
.vr-blog-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.vr-blog-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--vr-slate);
  background: #ffffff;
  border: 1.5px solid var(--vr-border);
  border-radius: var(--vr-radius-pill);
  padding: 8px 18px;
  cursor: pointer;
  transition: var(--vr-transition);
  text-decoration: none;
}

.vr-blog-cat-btn:hover,
.vr-blog-cat-btn.active {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}


/* ══════════════════════════════════════
   FOOTER CERT BADGES
══════════════════════════════════════ */
.vr-footer-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vr-footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.30);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 30px;
  padding: 5px 14px;
}

.vr-footer-cert-badge i {
  color: var(--vr-blue);
  font-size: 11px;
}


/* ══════════════════════════════════════
   UI/UX PREMIUM REFINEMENTS — v2
══════════════════════════════════════ */

/* HERO: taller minimum height */
.vr-hero-carousel,
.vr-hero-carousel .carousel-inner,
.vr-hero-carousel .carousel-item { 
  /* min-height: 880px; */
 }
@media (max-width: 1024px) {
  .vr-hero-carousel,
  .vr-hero-carousel .carousel-inner,
  .vr-hero-carousel .carousel-item { min-height: 700px; }
}
@media (max-width: 767px) {
  .vr-hero-carousel,
  .vr-hero-carousel .carousel-inner,
  .vr-hero-carousel .carousel-item { min-height: 600px; }
}

/* HERO ARROWS — premium circular buttons */
.vr-hero-carousel .carousel-control-prev,
.vr-hero-carousel .carousel-control-next {
  width: 56px;
  opacity: 1;
  z-index: 4;
}
.vr-hero-carousel .carousel-control-prev { left: 28px; }
.vr-hero-carousel .carousel-control-next { right: 28px; }
.vr-hero-carousel .carousel-control-prev-icon,
.vr-hero-carousel .carousel-control-next-icon { display: none; }

.vr-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.vr-hero-carousel .carousel-control-prev:hover .vr-arrow-btn,
.vr-hero-carousel .carousel-control-next:hover .vr-arrow-btn {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.55);
  transform: scale(1.10);
}

@media (max-width: 767px) {
  .vr-hero-carousel .carousel-control-prev { left: 12px; }
  .vr-hero-carousel .carousel-control-next { right: 12px; }
  .vr-arrow-btn { width: 40px; height: 40px; font-size: 15px; }
}

/* HERO INDICATORS: pill-style */
.vr-hero-carousel .carousel-indicators { bottom: 32px; gap: 6px; }
.vr-hero-carousel .carousel-indicators [data-bs-target] {
  width: 24px; height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.32); border: none; opacity: 1;
  transition: width 0.4s ease, background 0.3s ease;
}
.vr-hero-carousel .carousel-indicators .active {
  width: 56px; background: #ffffff;
}

/* HERO STATS STRIP */
.vr-hero-stats {
  display: flex;
  gap: 0;
  margin-top: 44px;
  flex-wrap: wrap;
}
.vr-hero-stat {
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.vr-hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.vr-hero-stat-num {
  font-family: var(--vr-font-heading);
  font-size: clamp(22px,2.5vw,30px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
}
.vr-hero-stat-num span { color: var(--vr-blue); }
.vr-hero-stat-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 1px;
  color: rgba(255,255,255,0.40); margin-top: 5px;
}
@media (max-width: 575px) {
  .vr-hero-stats { gap: 20px; flex-wrap: wrap; margin-top: 28px; }
  .vr-hero-stat { border-right: none; padding: 0; margin: 0; }
}

/* TRUST BAR: premium sizing */
.vr-hero-trust-bar { box-shadow: 0 6px 28px rgba(0,0,0,0.05); }
.vr-hero-trust-item { padding: 28px 32px; gap: 18px; }
.vr-hero-trust-icon { width: 52px; height: 52px; border-radius: 14px; font-size: 22px; }
.vr-hero-trust-val { font-size: 15px; font-weight: 800; }

/* IMPACT NUMBERS: larger */
.vr-impact-num { font-size: clamp(52px,6vw,76px); }
.vr-impact-stat { padding: 52px 28px; }

/* PRODUCT CARD LINK: Explore style */
.vr-prod-card-link { color: var(--vr-blue); font-size: 13px; }
.vr-prod-card-link:hover { color: var(--vr-ink); }

/* SPEC TAGS: interactive */
.vr-spec-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  color: var(--vr-slate);
  border-radius: 30px;
  padding: 4px 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.vr-prod-card:hover .vr-spec-tag {
  background: rgba(215,40,33,0.05);
  border-color: rgba(215,40,33,0.18);
  color: var(--vr-blue);
}

/* PROJECT CARDS: taller + cinematic hover overlay */
.vr-project-img { height: 280px; }
.vr-project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.vr-project-card:hover .vr-project-img::after { opacity: 1; }
.vr-project-badge { z-index: 2; }

/* APP CARDS: taller */
.vr-app-card { height: 340px; }
.vr-app-title { font-size: 22px; }

/* TIMELINE CONNECTOR: base height/background only (animation in final polish block) */
.vr-tl-connector {
  height: 2px;
  background: linear-gradient(90deg, var(--vr-border) 0%, var(--vr-blue) 50%, var(--vr-border) 100%);
  margin-top: 65px;
  opacity: 0.7;
}
.vr-tl-icon { width: 72px; height: 72px; border-radius: 20px; font-size: 26px; }

/* MANUFACTURING FLOATING BADGES */
.vr-mfg-img-wrap { position: relative; }
.vr-mfg-badge-wrap { position: absolute; z-index: 3; }
.vr-mfg-badge-wrap.top-right { top: 18px; right: 18px; }
.vr-mfg-badge-wrap.btm-left  { bottom: 18px; left: 18px; }
.vr-mfg-badge-wrap.btm-right { bottom: 18px; right: 18px; }

.vr-mfg-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 40px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--vr-ink);
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  white-space: nowrap;
}
.vr-mfg-badge i { color: var(--vr-blue); font-size: 13px; }

/* DOWNLOAD CENTER */
.vr-dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--vr-border);
  border-radius: 16px;
  padding: 20px 22px;
  transition: var(--vr-transition);
  text-decoration: none;
}
.vr-dl-card:hover {
  border-color: var(--vr-blue);
  box-shadow: 0 10px 36px rgba(215,40,33,0.08);
  transform: translateY(-4px);
}
.vr-dl-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(215,40,33,0.06);
  border: 1px solid rgba(215,40,33,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--vr-blue); font-size: 22px;
}
.vr-dl-type {
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--vr-blue); margin-bottom: 3px;
}
.vr-dl-name { font-size: 14px; font-weight: 700; color: var(--vr-ink); line-height: 1.3; }
.vr-dl-sub { font-size: 11.5px; color: var(--vr-mist); margin-top: 1px; }
.vr-dl-arrow {
  margin-left: auto; color: var(--vr-blue); font-size: 16px;
  opacity: 0.45; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0;
}
.vr-dl-card:hover .vr-dl-arrow { opacity: 1; transform: translateY(-2px); }

/* CERT STRIP: colored icons */
.vr-cert-icon {
  background: rgba(215,40,33,0.08);
  border: 1px solid rgba(215,40,33,0.12);
  color: var(--vr-blue);
  width: 40px; height: 40px; border-radius: 10px; font-size: 17px;
}

/* CTA BUTTONS */
.btn-vr-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: var(--vr-ink);
  border: none; padding: 16px 36px;
  border-radius: var(--vr-radius-pill);
  font-family: var(--vr-font-body); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--vr-transition);
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.btn-vr-cta-primary:hover {
  background: var(--vr-ink); color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}
.btn-vr-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.28);
  padding: 15px 36px; border-radius: var(--vr-radius-pill);
  font-family: var(--vr-font-body); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: var(--vr-transition);
  text-decoration: none; white-space: nowrap;
}
.btn-vr-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
  color: #ffffff; transform: translateY(-2px);
}


/* ══════════════════════════════════════
   NAVIGATION v2 REFINEMENTS
══════════════════════════════════════ */

/* Hero headline: larger, tighter tracking */
.vr-hero-carousel .vr-h1 {
  font-size: clamp(38px, 5.2vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  /* max-width: 650px; */
}

/* Hero arrow: 60px, red on hover */
.vr-arrow-btn {
  width: 60px;
  height: 60px;
  font-size: 20px;
}
.vr-hero-carousel .carousel-control-prev:hover .vr-arrow-btn,
.vr-hero-carousel .carousel-control-next:hover .vr-arrow-btn {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
}

/* Project image: taller + cinematic */
.vr-project-img { height: 440px; }

/* Industries cards: taller */
.vr-app-card { height: 360px; }

/* ── HERO AUTOPLAY PROGRESS BAR ── */
.vr-hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 20;
  pointer-events: none;
}
.vr-hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--vr-blue);
  transition: none;
}
.vr-hero-progress-bar.running {
  transition: width 6s linear;
  width: 100%;
}

/* ── DOWNLOAD SECTION BACKGROUND ── */
.vr-section--white { background: #ffffff; }

/* ── INDUSTRIES MEGA MENU ── */
.vr-industries-menu {
  width: 860px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--vr-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
  padding: 20px;
  animation: fadeDown 0.22s ease forwards;
}

.vr-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
}

.vr-ind-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vr-border);
  margin-bottom: 4px;
}

.vr-ind-group:last-child,
.vr-ind-group:nth-last-child(1),
.vr-ind-group:nth-last-child(2),
.vr-ind-group:nth-last-child(3) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.vr-ind-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--vr-blue);
  padding: 4px 10px 8px;
}

.vr-ind-group-title i {
  font-size: 14px;
}

.vr-ind-item {
  display: flex;
  flex-direction: column;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s ease;
  color: var(--vr-ink);
}

.vr-ind-item:hover {
  background: var(--vr-off);
}

.vr-ind-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.3;
  margin-bottom: 1px;
  transition: color 0.18s ease;
}

.vr-ind-item:hover .vr-ind-item-title {
  color: var(--vr-blue);
}

.vr-ind-item-desc {
  font-size: 11px;
  color: var(--vr-mist);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .vr-industries-menu {
    width: 100%;
    left: 0;
    transform: none;
  }
  .vr-ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .vr-ind-grid { grid-template-columns: 1fr; }
}

/* ── TRUSTED BY: premium client tile strip ── */
.vr-client-strip {
  background: #ffffff;
  border-top: 1px solid var(--vr-border);
  border-bottom: 1px solid var(--vr-border);
  padding: 52px 0;
}

.vr-client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--vr-border);
  border-radius: 16px;
  overflow: hidden;
}

.vr-client-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border-right: 1px solid var(--vr-border);
  text-align: center;
  transition: background 0.22s ease;
  cursor: default;
}

.vr-client-tile:last-child { border-right: none; }
.vr-client-tile:hover { background: var(--vr-off); }

.vr-client-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vr-off);
  border: 1px solid var(--vr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--vr-slate);
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.vr-client-tile:hover .vr-client-tile-icon {
  background: var(--vr-ink);
  border-color: var(--vr-ink);
  color: #ffffff;
}

.vr-client-tile-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--vr-ink);
  line-height: 1.3;
}

.vr-client-tile-type {
  font-size: 10px;
  color: var(--vr-mist);
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .vr-client-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
  }
  .vr-client-tile:nth-child(3) { border-right: none; }
  .vr-client-tile:nth-child(n+4) { border-top: 1px solid var(--vr-border); }
}

@media (max-width: 480px) {
  .vr-client-grid { grid-template-columns: repeat(2, 1fr); }
  .vr-client-tile:nth-child(3) { border-right: 1px solid var(--vr-border); }
  .vr-client-tile:nth-child(2n) { border-right: none; }
}

/* ── DOWNLOAD CARDS v2: with file size ── */
.vr-dl-size {
  font-size: 10px;
  color: var(--vr-mist);
  font-weight: 600;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── SECTION HEADING: one red phrase only (em) ── */
.vr-title em {
  display: inline;
  font-style: normal;
  color: var(--vr-blue);
  font-weight: 800;
}

/* ── HERO HEADING: light variant — em becomes warm white/gold ── */
.vr-title--light {
  color: #ffffff;
}
.vr-title--light em {
  display: inline;
  font-style: normal;
  color: #D72821;
  font-weight: 800;
}

/* ══════════════════════════════════════
   FINAL POLISH — ENTERPRISE REFINEMENTS
══════════════════════════════════════ */

/* ── 1. ACTIVE NAV INDICATOR — 2px red underline ── */
.vr-nav-link {
  position: relative;
}
.vr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--vr-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.vr-nav-link.active::after,
.vr-nav-link:hover::after {
  transform: scaleX(1);
}
/* Suppress underline on dropdown toggles — chevron makes it redundant */
.vr-nav-link.dropdown-toggle::after {
  display: none;
}

/* ── 2. TRUST BAR: +15% icons, bolder vals, vertical dividers ── */
.vr-hero-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 18px;
}
.vr-hero-trust-val {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.vr-hero-trust-item {
  padding: 26px 28px;
  border-right: 1px solid var(--vr-border);
  background: var(--vr-off);
}

/* ── 3. IMPACT NUMBERS: 80px ── */
.vr-impact-num {
  font-size: clamp(56px, 6.5vw, 80px);
  font-weight: 800;
}
.vr-impact-stat { padding: 56px 32px; }

/* ── 4. INDIA MAP WATERMARK on impact section ── */
.vr-impact-section {
  position: relative;
  overflow: hidden;
}
.vr-impact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 460px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 220'%3E%3Cpath fill='%23111111' opacity='0.035' d='M100 4 L108 10 L118 8 L126 14 L132 12 L138 20 L144 18 L148 26 L156 28 L160 36 L158 44 L164 50 L162 58 L168 64 L166 72 L170 80 L164 88 L168 96 L162 104 L164 112 L158 120 L154 128 L148 136 L140 142 L134 150 L126 156 L120 164 L112 168 L106 176 L100 182 L94 176 L88 168 L80 164 L74 156 L66 150 L60 142 L52 136 L46 128 L42 120 L36 112 L38 104 L32 96 L36 88 L30 80 L34 72 L32 64 L38 58 L36 50 L42 44 L40 36 L44 28 L52 26 L56 18 L62 20 L68 12 L74 14 L82 8 L92 10 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
.vr-impact-section .vr-container { position: relative; z-index: 1; }

/* ── 5. CERT STRIP: mini card style ── */
.vr-cert-strip {
  background: #111111;
  padding: 40px 0;
}
.vr-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.vr-cert-item:hover {
  background: rgba(255,255,255,0.03);
}
.vr-cert-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(215,40,33,0.10);
  border: 1px solid rgba(215,40,33,0.18);
  color: var(--vr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.vr-cert-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.vr-cert-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.30);
  margin-top: 2px;
  line-height: 1.4;
}

/* ── 6. TIMELINE CONNECTOR: animated width on scroll ── */
.vr-tl-connector {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vr-blue), rgba(215,40,33,0.2));
  transition: width 0.8s cubic-bezier(0.2, 0.8, 0.4, 1);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 76px; /* align with center of icon (num ~44px + half icon 32px) */
}
.vr-timeline.in .vr-tl-connector {
  width: 48px;
}

/* ── 7. WHY CARD: tighter body text ── */
.vr-why-desc {
  font-size: 13px;
  color: var(--vr-slate);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── 8. FOOTER: quick enquiry CTA + 15% more spacing ── */
.vr-footer {
  padding-top: 108px;
  padding-bottom: 0;
}
.vr-footer-enquiry {
  background: linear-gradient(135deg, var(--vr-blue) 0%, #9a1c17 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.vr-footer-enquiry-text {
  font-family: var(--vr-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.vr-footer-enquiry-text span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 4px;
}
.vr-footer-enquiry-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.vr-footer-enquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  font-family: var(--vr-font-body);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.vr-footer-enquiry-btn--white {
  background: #ffffff;
  color: var(--vr-blue);
}
.vr-footer-enquiry-btn--white:hover {
  background: var(--vr-ink);
  color: #ffffff;
}
.vr-footer-enquiry-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.30);
}
.vr-footer-enquiry-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #ffffff;
}
@media (max-width: 767px) {
  .vr-footer-enquiry { padding: 28px 24px; }
  .vr-footer-enquiry-text { font-size: 16px; }
}

/* ── FOOTER: slightly more spacing ── */
.vr-footer .row.g-5 > [class*="col-"] {
  padding-top: 16px;
}


/* ══════════════════════════════════════
   COMPONENTS MARQUEE
══════════════════════════════════════ */
.vr-marque-section {
  background: #ffffff;
  border-top: 1px solid var(--vr-border);
  border-bottom: 1px solid var(--vr-border);
  padding: 0;
  overflow: hidden;
}

.vr-marque-strip {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.vr-marque-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: vrMarqueScroll 28s linear infinite;
  padding: 28px 0;
}

.vr-marque-track:hover {
  animation-play-state: paused;
}

@keyframes vrMarqueScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vr-marque-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  border-right: 1px solid var(--vr-border);
  min-width: 130px;
}

.vr-marque-item:last-child {
  border-right: none;
}

.vr-marque-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vr-marque-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vr-marque-label {
  font-family: var(--vr-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--vr-ink);
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
}



