/* ==========================================================================
   TRANSTORQ DRIVES - BESPOKE EUROPEAN HEAVY-INDUSTRY OEM CORPORATE STYLESHEET
   Benchmark: Motovario Italy, Flender Germany, SEW-Eurodrive
   Brand Colors: TranstorQ Teal (#00a896), Deep Slate Navy (#07192f), Precision Blue (#0284c7)
   Zero AI Clichés | CAD Drafting Canvas Background | Geometric Executive Typography
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --tq-teal: #00a896;
  --tq-teal-dark: #008477;
  --tq-teal-light: #e6f7f5;
  --tq-navy: #07192f;
  --tq-navy-dark: #040e1a;
  --tq-slate: #0f172a;
  --tq-slate-light: #64748b;
  --tq-text-body: #334155;
  --tq-border: #e2e8f0;
  --tq-font-heading: 'Outfit', sans-serif;
  --tq-font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Global Reset & Precision Typography */
body.defult-home {
  font-family: var(--tq-font-body) !important;
  background-color: #ffffff;
  color: var(--tq-text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body.defult-home h1,
body.defult-home h2,
body.defult-home h3,
body.defult-home h4,
body.defult-home h5,
body.defult-home h6 {
  font-family: var(--tq-font-heading) !important;
  color: var(--tq-navy);
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ==========================================================================
/* ==========================================================================
   HEADER CONTAINER (Fluid & Generous Width)
   ========================================================================== */
.mv-header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.mv-topbar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 7px 0;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.4;
}

.mv-topbar-left,
.mv-topbar-right {
  white-space: nowrap;
}

.mv-topbar-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.mv-topbar-divider {
  display: inline-block;
  width: 1px;
  height: 13px;
  background: #cbd5e1;
  margin: 0 12px;
  vertical-align: middle;
}

.mv-topbar a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.mv-topbar a:hover {
  color: #00a896;
}

.mv-topbar-badge {
  background: #e6f6f4;
  color: #007a6d;
  border: 1px solid rgba(0, 168, 150, 0.25);
  font-weight: 600;
  font-size: 11.5px;
  padding: 2.5px 11px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.mv-topbar-wa {
  color: #16a34a;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}

.mv-topbar-wa:hover {
  color: #15803d;
  text-decoration: none;
}

/* ==========================================================================
   HIGH-CONTRAST NAVBAR (Single-line, Zero-wrap, High-Precision Alignment)
   ========================================================================== */
.mv-navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mv-nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 28px;
  text-decoration: none !important;
}

.mv-nav-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.mv-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.mv-nav-menu li {
  position: relative;
  white-space: nowrap;
}

.mv-nav-menu li a {
  font-family: var(--tq-font-body) !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #1e293b !important;
  text-decoration: none !important;
  padding: 8px 12px !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap !important;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

/* Elegant underline accent indicator instead of blocky green tag */
.mv-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 12px;
  right: 12px;
  height: 2.5px;
  background: #00a896;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mv-nav-menu li a:hover {
  color: #00a896 !important;
}

.mv-nav-menu li a:hover::after {
  transform: scaleX(1);
}

.mv-nav-menu li.active a {
  color: #00a896 !important;
  font-weight: 600 !important;
  background: transparent !important;
}

.mv-nav-menu li.active a::after {
  transform: scaleX(1);
}

/* NAVBAR BUTTON ACTIONS */
.mv-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 20px;
  white-space: nowrap;
}

.mv-nav-btn {
  font-family: var(--tq-font-body) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  height: 38px;
  padding: 0 16px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap !important;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  line-height: 1;
}

.mv-nav-btn-outline {
  background: #ffffff;
  color: #1e293b !important;
  border: 1.5px solid #cbd5e1;
}

.mv-nav-btn-outline:hover {
  border-color: #00a896;
  color: #00a896 !important;
  background: #f0fdfa;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mv-nav-btn-primary {
  background: linear-gradient(135deg, #00a896 0%, #008477 100%);
  color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 168, 150, 0.28);
}

.mv-nav-btn-primary:hover {
  background: linear-gradient(135deg, #00bfa9 0%, #009688 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 168, 150, 0.38);
}

/* MOBILE TOGGLE & DRAWER */
.mv-mobile-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mv-mobile-toggle:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.mv-mobile-drawer {
  display: none;
  padding: 16px 32px 24px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mv-mobile-drawer.show {
  display: block;
}

.mv-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.mv-mobile-menu li a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
}

.mv-mobile-menu li.active a,
.mv-mobile-menu li a:hover {
  color: #00a896;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .mv-header-container {
    padding: 0 16px;
  }
  .mv-topbar {
    font-size: 12px;
  }
  .mv-topbar-divider {
    margin: 0 8px;
  }
  .mv-nav-brand {
    margin-right: 10px;
  }
  .mv-nav-brand img {
    height: 38px;
  }
  .mv-nav-menu li a {
    font-size: 13px !important;
    padding: 6px 7px !important;
  }
  .mv-nav-actions {
    margin-left: 6px;
    gap: 6px;
  }
  .mv-nav-btn {
    height: 36px;
    padding: 0 12px;
    font-size: 12.5px !important;
  }
  /* Hide the portfolio button in the top navbar on medium tablets to guarantee ample breathing room */
  .mv-nav-btn-outline {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .mv-topbar {
    display: none !important;
  }
  .mv-nav-menu {
    display: none !important;
  }
  .mv-mobile-toggle {
    display: inline-flex;
  }
  .mv-nav-btn-outline {
    display: none !important;
  }
}

/* Button System (Global) */
.mv-btn {
  font-family: var(--tq-font-body) !important;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
  border: none;
  white-space: nowrap !important;
}

.mv-btn-primary {
  background: linear-gradient(135deg, #00a896 0%, #008477 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(0, 168, 150, 0.35);
}

.mv-btn-primary:hover {
  background: linear-gradient(135deg, #00bfa9 0%, #009688 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 168, 150, 0.45);
}

.mv-btn-white {
  background: #ffffff;
  color: var(--tq-navy) !important;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.mv-btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  color: var(--tq-teal) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mv-btn-outline-dark {
  background: transparent;
  color: var(--tq-navy);
  border: 1.5px solid var(--tq-border);
}

.mv-btn-outline-dark:hover {
  border-color: var(--tq-teal);
  color: var(--tq-teal);
  background: var(--tq-teal-light);
}

.mv-btn-outline-white {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.mv-btn-outline-white:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 1: CINEMATIC HERO (Full-Screen Viewport Height & Sharp Product Placement)
   ========================================================================== */
.mv-hero {
  background: #040e1a url('../images/new_ui/hero_cinematic_bg.jpg') center center / cover no-repeat;
  position: relative;
  padding: 60px 0 110px 0;
  min-height: clamp(650px, calc(100vh - 120px), 920px);
  display: flex;
  align-items: center;
  overflow: visible;
}

.mv-hero-title {
  font-size: 50px;
  line-height: 1.15;
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.mv-hero-desc {
  font-size: 17.5px;
  line-height: 1.55;
  color: #cbd5e1;
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 400;
}

/* Overlapping Seam Card: Explore Our Product Range */
.mv-hero-explore-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 36px;
  margin-bottom: -75px;
  z-index: 10;
  max-width: 490px;
  background-image: radial-gradient(rgba(0, 168, 150, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
}

.mv-hero-explore-card h3 {
  font-size: 21px;
  color: var(--tq-navy) !important;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.mv-hero-explore-card p {
  font-size: 13.5px;
  color: var(--tq-slate-light);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Sharp, Elegant Motor Family Placement */
.mv-hero-motors-wrap {
  position: relative;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.mv-hero-motors-wrap::before {
  content: '';
  position: absolute;
  top: 48%;
  right: 6%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(14, 165, 233, 0.08) 35%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.mv-hero-motors-img {
  max-width: 530px;
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-hero-motors-img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ==========================================================================
   LIGHT CANVAS WRAPPER (CAD Blueprint Background & Organic Curves)
   ========================================================================== */
.mv-light-canvas-wrapper {
  background-color: #ffffff;
  background-image: url('../images/new_ui/blueprint_canvas_bg.jpg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Centered Section Headings */
.mv-section-heading-centered {
  text-align: center;
  margin-bottom: 42px;
}

.mv-section-heading-centered h2 {
  font-size: 36px;
  color: var(--tq-navy);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.mv-heading-accent-line {
  width: 44px;
  height: 3px;
  background: var(--tq-teal);
  border-radius: 2px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION 2: APPLICATIONS & SOLUTIONS (5 Clean Horizontal Badges + 3D Motor)
   ========================================================================== */
.mv-apps-split-section {
  padding: 50px 0 65px 0;
  position: relative;
}

.mv-apps-horizontal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mv-app-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1 1 80px;
  max-width: 95px;
}

.mv-app-badge-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e3150 0%, #082136 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(14, 49, 80, 0.22);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.mv-app-badge-item:hover .mv-app-badge-circle,
.mv-app-badge-item.active .mv-app-badge-circle {
  background: linear-gradient(135deg, #00a896 0%, #008477 100%);
  box-shadow: 0 10px 25px rgba(0, 168, 150, 0.35);
  transform: translateY(-4px);
  border-color: #ffffff;
}

.mv-app-badge-label {
  font-family: var(--tq-font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--tq-navy);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.mv-app-badge-item:hover .mv-app-badge-label,
.mv-app-badge-item.active .mv-app-badge-label {
  color: var(--tq-teal);
}

/* 3D Motor Box */
.mv-app-drive-box {
  position: relative;
  display: inline-block;
}

.mv-app-drive-box img {
  max-height: 290px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.mv-app-drive-box:hover img {
  transform: scale(1.03);
}

.mv-drive-floor-shadow {
  position: absolute;
  bottom: -15px;
  left: 10%;
  width: 80%;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0) 70%);
  z-index: -1;
}

/* ==========================================================================
   SECTION 3: SERVING THE INDUSTRY SINCE 2021 & FLOATING METRICS
   ========================================================================== */
.mv-heritage-section {
  padding: 60px 0 70px 0;
  position: relative;
}

.mv-heritage-title {
  font-size: 34px;
  color: var(--tq-navy);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.mv-heritage-accent-line {
  width: 44px;
  height: 3px;
  background: var(--tq-teal);
  border-radius: 2px;
  margin-bottom: 24px;
}

.mv-heritage-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--tq-text-body);
  margin-bottom: 18px;
}

.mv-factory-frame-wrap {
  position: relative;
  display: block;
}

.mv-factory-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15);
  display: block;
}

/* Overlapping Floating Metric Plaque */
.mv-floating-metrics-card {
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  min-width: 210px;
  z-index: 5;
}

.mv-metric-row-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.mv-metric-row-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mv-metric-row-item:first-child {
  padding-top: 0;
}

.mv-metric-num {
  font-family: var(--tq-font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #008477;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mv-metric-lbl {
  font-family: var(--tq-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--tq-slate-light);
  margin-top: 2px;
}

/* ==========================================================================
   SECTION 4: OUR PRODUCT CATEGORIES (5 Clean Cards in One Row)
   ========================================================================== */
.mv-categories-5-section {
  padding: 60px 0 50px 0;
  position: relative;
}

.mv-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

.mv-cat-5card {
  background: #ffffff;
  border: 1px solid var(--tq-border);
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.mv-cat-5card:hover {
  transform: translateY(-6px);
  border-color: var(--tq-teal);
  box-shadow: 0 18px 36px -8px rgba(0, 168, 150, 0.18), 0 4px 12px rgba(15, 23, 42, 0.06);
}

.mv-cat-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f1f5f9;
  color: var(--tq-slate-light);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.mv-cat-5card:hover .mv-cat-card-tag {
  background: var(--tq-teal-light);
  color: var(--tq-teal-dark);
}

.mv-cat-5card-img-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 14px 0;
  position: relative;
}

.mv-cat-5card-img-wrap img {
  max-height: 125px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.10));
}

.mv-cat-5card:hover .mv-cat-5card-img-wrap img {
  transform: scale(1.06);
}

.mv-cat-5card-title {
  font-family: var(--tq-font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--tq-navy);
  margin: 0 0 4px 0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.mv-cat-5card:hover .mv-cat-5card-title {
  color: var(--tq-teal);
}

.mv-cat-card-sub {
  font-size: 12px;
  color: var(--tq-slate-light);
  margin-bottom: 8px;
}

.mv-cat-card-action {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--tq-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.mv-cat-5card:hover .mv-cat-card-action {
  opacity: 1;
  transform: translateX(2px);
}

/* ==========================================================================
   SECTION 5: DARK TEXTURED BOTTOM BANNER (Matching Client Mockup)
   ========================================================================== */
.mv-cta-banner {
  background: linear-gradient(rgba(4, 14, 26, 0.85), rgba(4, 14, 26, 0.90)), url('../images/new_ui/cta_banner_bg.jpg') center center / cover no-repeat;
  padding: 75px 0;
  text-align: center;
  position: relative;
}

.mv-cta-banner h2 {
  font-size: 38px;
  color: #ffffff !important;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.mv-cta-banner p {
  font-size: 16px;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 28px auto;
  line-height: 1.6;
}

/* ==========================================================================
   EXECUTIVE FOOTER
   ========================================================================== */
.mv-footer-pro,
#rs-footer,
.mv-footer,
.tq-footer {
  background: var(--tq-navy-dark) !important;
  color: #94a3b8 !important;
  padding: 65px 0 25px 0 !important;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mv-footer-logo-plate {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.mv-footer-logo-plate img {
  height: 38px;
  width: auto;
}

#rs-footer h4,
#rs-footer h5,
.mv-footer h4,
.mv-footer h5,
.mv-footer-col-title {
  font-family: var(--tq-font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #ffffff !important;
  margin-bottom: 18px !important;
  position: relative;
  padding-bottom: 8px;
}

#rs-footer h4::after,
#rs-footer h5::after,
.mv-footer h4::after,
.mv-footer h5::after,
.mv-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--tq-teal);
}

.tq-footer-links,
.mv-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tq-footer-links li,
.mv-footer-links li {
  margin-bottom: 10px;
}

.tq-footer-links li a,
.mv-footer-links li a {
  color: #94a3b8 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tq-footer-links li a:hover,
.mv-footer-links li a:hover {
  color: var(--tq-teal) !important;
  padding-left: 4px;
}

.mv-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mv-footer-links li {
  margin-bottom: 10px;
}

.mv-footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mv-footer-links li a:hover {
  color: var(--tq-teal);
  padding-left: 4px;
}

.mv-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 50px;
  font-size: 13px;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 991px) {
  .mv-hero {
    background-position: center center;
    padding: 60px 0 90px 0;
  }
  .mv-hero-title {
    font-size: 38px;
  }
  .mv-hero-explore-card {
    margin-bottom: 20px;
  }
  .mv-floating-metrics-card {
    position: static;
    transform: none;
    margin-top: 20px;
    min-width: 100%;
  }
  .mv-5card-grid,
  .mv-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .mv-hero-title {
    font-size: 32px;
  }
  .mv-5card-grid,
  .mv-products-grid {
    grid-template-columns: 1fr;
  }
  .mv-apps-horizontal-row {
    justify-content: center;
  }
}

/* ==========================================================================
   SECTION: PRECISION ENGINEERING & CAD CUTAWAY
   ========================================================================== */
.mv-engineering-section {
  padding: 85px 0 95px 0;
  position: relative;
}

.mv-cad-frame {
  background: #ffffff;
  border: 1px solid var(--tq-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(15, 23, 42, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-cad-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px -12px rgba(0, 168, 150, 0.18), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mv-cad-frame-header {
  background: #07192f;
  color: #ffffff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mv-cad-frame-header .badge-tech {
  background: rgba(0, 168, 150, 0.25);
  color: #2dd4bf;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.mv-cad-frame-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mv-spec-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mv-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.mv-spec-item:hover {
  border-color: rgba(0, 168, 150, 0.35);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 168, 150, 0.08);
}

.mv-spec-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--tq-teal-light);
  color: var(--tq-teal-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(0, 168, 150, 0.2);
}

.mv-spec-content h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--tq-navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.mv-spec-content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--tq-text-body);
  margin: 0;
}

/* ==========================================================================
   SECTION: MODULAR DRIVE ARCHITECTURE
   ========================================================================== */
.mv-modularity-section {
  padding: 85px 0 95px 0;
  background: #f8fafc;
  border-top: 1px solid var(--tq-border);
  border-bottom: 1px solid var(--tq-border);
  position: relative;
}

.mv-modularity-card {
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid var(--tq-border);
  border-radius: 12px;
  margin-bottom: 18px;
  transition: all 0.25s ease;
}

.mv-modularity-card:hover {
  border-color: var(--tq-teal);
  box-shadow: 0 8px 24px rgba(0, 168, 150, 0.1);
  transform: translateY(-2px);
}

.mv-modularity-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--tq-navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-modularity-card h5 i {
  color: var(--tq-teal);
}

.mv-modularity-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--tq-text-body);
  margin: 0;
}

/* ==========================================================================
   SECTION: TRUST & QUALITY CERTIFICATION RIBBON
   ========================================================================== */
.mv-trust-ribbon {
  background: #07192f;
  background-image: radial-gradient(rgba(0, 168, 150, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  color: #ffffff;
}

.mv-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mv-trust-col {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-trust-col:last-child {
  border-right: none;
}

.mv-trust-badge-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(0, 168, 150, 0.15);
  border: 1px solid rgba(0, 168, 150, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #2dd4bf;
}

.mv-trust-col-info h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.mv-trust-col-info p {
  font-size: 12.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .mv-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-trust-col:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .mv-trust-grid {
    grid-template-columns: 1fr;
  }
  .mv-trust-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
  }
}

