/* ============================================================
   VR INDUSTRIES — COMPILED STYLESHEET
   Source: assets/scss/style.scss  (do not edit this file directly;
   edit the SCSS partials and recompile)
   ============================================================ */

:root {
  --vr-charcoal: #14171d;
  --vr-charcoal-deep: #0d0f13;
  --vr-charcoal-soft: #1c2028;
  --vr-orange: #ff5a1f;
  --vr-orange-dark: #e14a12;
  --vr-orange-tint: #fff1ea;
  --vr-gray-soft: #f4f5f7;
  --vr-gray-line: #e7e9ee;
  --vr-text-body: #545c68;
  --vr-text-muted-dark: #9aa3b2;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: "Manrope", sans-serif;
  color: var(--vr-text-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--vr-charcoal);
  font-weight: 600;
  letter-spacing: -0.02em;
}

::selection { background: var(--vr-orange); color: #fff; }

img { max-width: 100%; }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--gray { background: var(--vr-gray-soft); }
.section--dark { background: var(--vr-charcoal-deep); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6 { color: #fff; }
.section--dark p { color: var(--vr-text-muted-dark); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.text-center { margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vr-orange);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--vr-orange);
  border-radius: 2px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.section-head p { font-size: 1.06rem; margin-bottom: 0; }

.accent { color: var(--vr-orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-vr {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 100rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.btn-vr i { font-size: 1.05rem; transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.21, 1); }
.btn-vr:hover i { transform: translateX(4px); }

.btn-vr--primary {
  background: var(--vr-orange);
  color: #fff;
  box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45);
}
.btn-vr--primary:hover {
  background: var(--vr-orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-vr--ghost { border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.btn-vr--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-vr--dark { background: var(--vr-charcoal); color: #fff; }
.btn-vr--dark:hover {
  background: var(--vr-charcoal-soft);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-vr { padding-block: 1.1rem; transition: all 0.35s cubic-bezier(0.22, 0.61, 0.21, 1); }
.navbar-vr .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
}
.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: var(--vr-orange);
  color: #fff;
  font-size: 1.35rem;
  border-radius: 0.85rem;
  box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45);
}
.brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-tag {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vr-orange);
}
.navbar-vr .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.92rem;
  padding-inline: 1rem;
  transition: color 0.25s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.navbar-vr .nav-link:hover,
.navbar-vr .nav-link.active { color: #fff; }
.navbar-vr .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 0.625rem;
}
.navbar-vr .navbar-toggler:focus { box-shadow: none; }
.navbar-vr.is-scrolled {
  padding-block: 0.6rem;
  background: rgba(13, 15, 19, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
@media (max-width: 991.98px) {
  .navbar-vr .navbar-collapse {
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--vr-charcoal-soft);
    border-radius: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ============================================================
   CHIPS / TAGS
   ============================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.95rem;
  border-radius: 100rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--vr-orange-tint);
  color: var(--vr-orange-dark);
}
.chip--glass {
  background: rgba(13, 15, 19, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stat .stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
  color: var(--vr-charcoal);
}
.stat .stat-value .stat-suffix { color: var(--vr-orange); }
.stat .stat-label {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vr-text-body);
}
.stat.stat--light .stat-value { color: #fff; }
.stat.stat--light .stat-label { color: var(--vr-text-muted-dark); }

/* ============================================================
   AVATARS (CSS initials — no external service)
   ============================================================ */
.avatar {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--vr-charcoal-soft), var(--vr-charcoal));
}
.avatar.avatar--warm { background: linear-gradient(135deg, var(--vr-orange), var(--vr-orange-dark)); }

/* ============================================================
   SWIPER NAV
   ============================================================ */
.swiper-nav { display: flex; gap: 0.6rem; }
.swiper-nav button {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--vr-gray-line);
  background: #fff;
  color: var(--vr-charcoal);
  font-size: 1.05rem;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.swiper-nav button:hover {
  background: var(--vr-orange);
  border-color: var(--vr-orange);
  color: #fff;
  box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45);
}
.swiper-nav button.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1040;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: var(--vr-charcoal);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--vr-orange); box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 8.5rem 4.5rem;
  background: var(--vr-charcoal-deep);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-glow--orange {
  width: 34rem;
  height: 34rem;
  top: -10rem;
  right: -8rem;
  background: rgba(255, 90, 31, 0.16);
}
.hero-glow--blue {
  width: 26rem;
  height: 26rem;
  bottom: -8rem;
  left: -10rem;
  background: rgba(66, 103, 178, 0.12);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-badge i { color: var(--vr-orange); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-block: 1.4rem;
}

.hero-lead {
  color: var(--vr-text-muted-dark);
  font-size: 1.1rem;
  max-width: 34rem;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual { position: relative; }
.hero-visual .hero-img-main {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}
.hero-visual .hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
}
.hero-visual .hero-card {
  position: absolute;
  background: rgba(13, 15, 19, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.125rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}
.hero-visual .hero-card .hero-card-icon {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--vr-orange);
  font-size: 1.2rem;
}
.hero-visual .hero-card strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 0.95rem; }
.hero-visual .hero-card span { font-size: 0.78rem; color: var(--vr-text-muted-dark); }
.hero-visual .hero-card--top { top: 2.2rem; left: -3.2rem; }
.hero-visual .hero-card--bottom { bottom: 2.6rem; right: -2.4rem; }
.hero-visual .hero-ring {
  position: absolute;
  width: 11rem;
  height: 11rem;
  right: -3.5rem;
  top: -3.5rem;
  border: 1px dashed rgba(255, 90, 31, 0.5);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.6rem;
  margin-top: 0.8rem;
  margin-inline: auto;
  background: linear-gradient(180deg, var(--vr-orange), transparent);
  animation: scroll-pulse 2s cubic-bezier(0.22, 0.61, 0.21, 1) infinite;
}

@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 991.98px) {
  .hero { padding-top: 7rem; }
  .hero-visual { margin-top: 3.5rem; }
  .hero-visual .hero-card--top { left: -0.5rem; }
  .hero-visual .hero-card--bottom { right: -0.5rem; }
  .hero-visual .hero-ring { right: -1rem; top: -2rem; }
  .hero-scroll { display: none; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-media { position: relative; padding-bottom: 3.4rem; }
.about-media .about-img-main {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 22px 48px -16px rgba(13, 15, 19, 0.18);
}
.about-media .about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.2;
}
.about-media .about-img-float {
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: 46%;
  border-radius: 1.125rem;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 22px 48px -16px rgba(13, 15, 19, 0.18);
}
.about-media .about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.05;
}
.about-media .about-exp {
  position: absolute;
  left: -1.2rem;
  bottom: 1.6rem;
  background: var(--vr-orange);
  color: #fff;
  border-radius: 1.125rem;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45);
}
.about-media .about-exp .about-exp-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-media .about-exp span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-points { display: grid; gap: 1rem; margin-block: 1.9rem; }
.about-points .about-point { display: flex; gap: 1rem; align-items: flex-start; }
.about-points .about-point i {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--vr-orange-tint);
  color: var(--vr-orange-dark);
  font-size: 1.1rem;
}
.about-points .about-point strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--vr-charcoal);
  margin-bottom: 0.15rem;
}
.about-points .about-point p { margin: 0; font-size: 0.95rem; }

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  padding: 1.75rem 0 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--vr-gray-line);
}

@media (max-width: 991.98px) {
  .about-media { margin-bottom: 3rem; }
  .about-media .about-exp { left: 0; }
  .about-media .about-img-float { right: 0; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-swiper { overflow: visible; }

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--vr-gray-line);
  border-radius: 1.5rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.21, 1),
              box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.21, 1),
              border-color 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
  z-index: 3;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 26px 52px -18px rgba(13, 15, 19, 0.24);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card .product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef0f4, #f7f8fa);
}
.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.product-card .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 15, 19, 0.32), rgba(13, 15, 19, 0) 45%);
  opacity: 0.85;
  transition: opacity 0.45s ease;
}
.product-card:hover .product-media::after { opacity: 1; }
.product-card .product-media .chip {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  background: rgba(13, 15, 19, 0.55);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.product-card:hover .product-media img { transform: scale(1.08); }

.product-card .product-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .product-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.product-card:hover .product-body h3 { color: var(--vr-orange-dark); }
.product-card .product-body p {
  font-size: 0.92rem;
  color: var(--vr-text-body);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 100rem;
  border: 1px solid var(--vr-gray-line);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--vr-charcoal);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.product-card .product-link i { transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.21, 1); }
.product-card .product-link:hover {
  background: var(--vr-orange);
  border-color: var(--vr-orange);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(255, 90, 31, 0.5);
}
.product-card .product-link:hover i { transform: translateX(4px); }

.products-progress {
  height: 3px;
  margin-top: 2.6rem;
  background: var(--vr-gray-line);
  border-radius: 3px;
  overflow: hidden;
}
.products-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--vr-orange);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.22, 0.61, 0.21, 1);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industry-tile {
  height: 100%;
  padding: 1.9rem 1.7rem;
  border-radius: 1.125rem;
  background: var(--vr-charcoal-soft);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.industry-tile i {
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.9rem;
  background: rgba(255, 90, 31, 0.12);
  color: var(--vr-orange);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.industry-tile h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.4rem; }
.industry-tile p { font-size: 0.87rem; margin: 0; }
.industry-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 31, 0.45);
  background: #20242d;
}
.industry-tile:hover i {
  background: var(--vr-orange);
  color: #fff;
  box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
/* Numbered feature cards (dark cards on light section) */
.feature-card {
  position: relative;
  height: 100%;
  padding: 2.1rem 1.9rem;
  border-radius: 1.5rem;
  background: var(--vr-charcoal);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.21, 1),
              box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.21, 1),
              background 0.45s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  right: -30%;
  top: -60%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.22), rgba(255, 90, 31, 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-8px);
  background: var(--vr-charcoal-soft);
  box-shadow: 0 30px 60px -22px rgba(13, 15, 19, 0.55);
}
.feature-card:hover::before { opacity: 1; }
.feature-num {
  position: absolute;
  top: 1.15rem;
  right: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  transition: color 0.45s ease;
}
.feature-card:hover .feature-num { color: rgba(255, 90, 31, 0.35); }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: var(--vr-orange-tint);
  color: var(--vr-orange-dark);
  font-size: 1.55rem;
  margin-bottom: 1.4rem;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.feature-card:hover .feature-icon {
  background: var(--vr-orange);
  color: #fff;
  box-shadow: 0 14px 38px -10px rgba(255, 90, 31, 0.6);
  transform: translateY(-2px);
}
.feature-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--vr-text-muted-dark); font-size: 0.92rem; margin: 0; }

.why-cta { margin-top: 3rem; }

/* ============================================================
   PROJECTS
   ============================================================ */
.project-card {
  position: relative;
  display: block;
  border-radius: 1.75rem;
  overflow: hidden;
  height: 100%;
  min-height: 17rem;
  text-decoration: none;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 30%, rgba(13, 15, 19, 0.88) 88%);
  transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.project-card .project-meta {
  position: absolute;
  inset-inline: 1.4rem;
  bottom: 1.3rem;
  z-index: 1;
}
.project-card .project-meta .chip { margin-bottom: 0.7rem; }
.project-card .project-meta h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.25rem; }
.project-card .project-meta .project-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--vr-text-muted-dark);
  font-size: 0.84rem;
  font-weight: 600;
}
.project-card .project-meta .project-loc i { color: var(--vr-orange); }
.project-card .project-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 1;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.project-card:hover img { transform: scale(1.06); }
.project-card:hover .project-arrow { opacity: 1; transform: none; background: var(--vr-orange); }
.project-card--tall { min-height: 100%; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-grid { position: relative; }
.process-grid::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 4%;
  right: 4%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--vr-gray-line) 0 10px, transparent 10px 18px);
}

.process-step { position: relative; text-align: center; padding: 0 0.6rem; }
.process-step .process-num {
  position: relative;
  z-index: 1;
  width: 4.8rem;
  height: 4.8rem;
  margin: 0 auto 1.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--vr-gray-line);
  box-shadow: 0 6px 24px -8px rgba(13, 15, 19, 0.1);
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.process-step .process-num i {
  font-size: 1.5rem;
  color: var(--vr-charcoal);
  transition: color 0.3s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.process-step .process-num small {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--vr-orange);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
}
.process-step h3 { font-size: 1.02rem; margin-bottom: 0.45rem; }
.process-step p { font-size: 0.86rem; margin: 0; }
.process-step:hover .process-num {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 31, 0.5);
}
.process-step:hover .process-num i { color: var(--vr-orange); }

@media (max-width: 991.98px) {
  .process-grid::before { display: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  height: auto;
  background: #fff;
  border: 1px solid var(--vr-gray-line);
  border-radius: 1.75rem;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonial-card .testimonial-stars { color: #f6a723; font-size: 0.95rem; letter-spacing: 0.12em; }
.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--vr-text-body);
}
.testimonial-card .testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--vr-gray-soft);
}
.testimonial-card .testimonial-person strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--vr-charcoal);
  font-size: 0.95rem;
}
.testimonial-card .testimonial-person span { font-size: 0.8rem; }

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee .marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border-radius: 1.125rem;
  background: #fff;
  border: 1px solid var(--vr-gray-line);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: #8a93a3;
  white-space: nowrap;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.partner-logo i { font-size: 1.25rem; }
.partner-logo:hover { color: var(--vr-charcoal); border-color: rgba(255, 90, 31, 0.4); }

.partners-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a93a3;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: 1.75rem;
  background: var(--vr-charcoal-deep);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  top: -16rem;
  right: -10rem;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.22);
  filter: blur(80px);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 80% 0%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse at 80% 0%, #000, transparent 70%);
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
}
.cta-band p { color: var(--vr-text-muted-dark); }
.cta-band .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  text-decoration: none;
}
.cta-band .cta-phone i {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--vr-orange);
  font-size: 1.2rem;
}
.cta-band .cta-phone small { display: block; color: var(--vr-text-muted-dark); font-size: 0.78rem; }
.cta-band .cta-phone strong { font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; }
.cta-band > .row { position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--vr-charcoal-deep);
  color: var(--vr-text-muted-dark);
  padding-top: clamp(4rem, 7vw, 5.5rem);
}
.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer .footer-about p { font-size: 0.93rem; max-width: 21rem; }
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.footer .footer-links a {
  color: var(--vr-text-muted-dark);
  text-decoration: none;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.25s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.footer .footer-links a i {
  font-size: 0.65rem;
  color: var(--vr-orange);
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.footer .footer-links a:hover { color: #fff; }
.footer .footer-links a:hover i { transform: translateX(3px); }
.footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  font-size: 0.93rem;
}
.footer .footer-contact li { display: flex; gap: 0.8rem; align-items: flex-start; }
.footer .footer-contact i { color: var(--vr-orange); margin-top: 0.15rem; }
.footer .footer-contact a { color: var(--vr-text-muted-dark); text-decoration: none; }
.footer .footer-contact a:hover { color: #fff; }
.footer .footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer .footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1rem;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.footer .footer-social a:hover {
  background: var(--vr-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -10px rgba(255, 90, 31, 0.45);
}
.footer .newsletter {
  display: flex;
  margin-top: 1rem;
  border-radius: 100rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem;
}
.footer .newsletter input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}
.footer .newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.footer .newsletter button {
  border: 0;
  border-radius: 100rem;
  background: var(--vr-orange);
  color: #fff;
  padding: 0.55rem 1.2rem;
  font-size: 1rem;
  transition: all 0.45s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.footer .newsletter button:hover { background: var(--vr-orange-dark); }
.footer .footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}
.footer .footer-bottom a { color: var(--vr-text-muted-dark); text-decoration: none; }
.footer .footer-bottom a:hover { color: #fff; }

/* ============================================================
   MANUFACTURING GALLERY
   ============================================================ */
.gallery-item {
  position: relative;
  display: block;
  margin: 0;
  border-radius: 1.75rem;
  overflow: hidden;
  height: 100%;
  min-height: 16rem;
}
.gallery-item.gallery-item--tall { min-height: 22rem; }
@media (min-width: 992px) {
  .gallery-item.gallery-item--tall { min-height: 100%; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 35%, rgba(13, 15, 19, 0.85) 92%);
}
.gallery-item figcaption {
  position: absolute;
  inset-inline: 1.4rem;
  bottom: 1.3rem;
  z-index: 1;
}
.gallery-item figcaption .chip { margin-bottom: 0.6rem; }
.gallery-item figcaption h3 { color: #fff; font-size: 1.15rem; margin: 0; }
.gallery-item:hover img { transform: scale(1.06); }

/* ============================================================
   QUALITY COMMITMENT
   ============================================================ */
.quality-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.85rem;
}
.quality-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--vr-charcoal);
}
.quality-list li i { color: var(--vr-orange); font-size: 1.15rem; margin-top: 0.1rem; }

.standard-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.standard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100rem;
  background: #fff;
  border: 1px solid var(--vr-gray-line);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--vr-charcoal);
  box-shadow: 0 6px 24px -8px rgba(13, 15, 19, 0.1);
}
.standard-badge i { color: var(--vr-orange); font-size: 1rem; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-ring,
  .hero-scroll::after,
  .marquee .marquee-track { animation: none; }
}
