/* ============================================================
   MAHEER TECHNOLOGIES — Brand-Aligned Redesign v3
   Colors extracted from brand logo: Navy + Red + White
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand colors from logo */
  --brand-navy: #1B2D6B;
  --brand-navy-dk: #12204D;
  --brand-navy-lt: #2A3F8F;
  --brand-red: #C5282F;
  --brand-red-dk: #A01E24;
  --brand-red-lt: #E04048;
  /* Neutrals */
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --mid: #555770;
  --mid-lt: #8b8da3;
  --light: #F0F2F8;
  --light-2: #E8EBF4;
  --white: #ffffff;
  --border: #D8DCE8;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 45, 107, .06);
  --shadow-md: 0 8px 32px rgba(27, 45, 107, .1);
  --shadow-lg: 0 20px 60px rgba(27, 45, 107, .15);
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font)
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--dark)
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem)
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem)
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem)
}

p {
  line-height: 1.7;
  color: var(--mid)
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 90px 0
}

.section-sm {
  padding: 56px 0
}

.text-center {
  text-align: center
}

.bg-light {
  background: var(--light)
}

.bg-dark {
  background: var(--dark)
}

.bg-white {
  background: var(--white)
}

/* ---------- Section Headings ---------- */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2
}

.section-heading span {
  color: var(--brand-navy)
}

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.7
}

.section-title-block {
  margin-bottom: 48px
}

.section-title-block.centered {
  text-align: center
}

.section-title-block.centered .section-sub {
  margin: 0 auto
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.mh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition)
}

.mh-nav.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 2px 20px rgba(27, 45, 107, .08)
}

.mh-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px
}

.mh-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none
}

.mh-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), height var(--transition);
}

.mh-nav.scrolled .mh-logo img {
  filter: none;
  height: 45px;
}

.mh-logo-text {
  display: none
}

.mh-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0
}

.mh-menu>li {
  position: relative
}

.mh-menu>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap
}

.mh-nav.scrolled .mh-menu>li>a {
  color: var(--dark)
}

.mh-menu>li>a:hover {
  background: rgba(255, 255, 255, .12)
}

.mh-nav.scrolled .mh-menu>li>a:hover {
  background: rgba(27, 45, 107, .06)
}

.mh-menu>li>a svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition)
}

.mh-menu>li:hover>a svg {
  transform: rotate(180deg)
}

.mh-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border)
}

.mh-dropdown.has-sub {
  min-width: 230px
}

.mh-menu>li:hover .mh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.mh-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition);
  white-space: nowrap
}

.mh-dropdown li a:hover {
  background: var(--light);
  color: var(--brand-navy)
}

.mh-dropdown li a svg {
  width: 12px;
  height: 12px;
  color: var(--mid-lt)
}

.mh-subdrop {
  position: absolute;
  top: 0;
  left: calc(100% + 6px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border)
}

.mh-dropdown li:hover .mh-subdrop {
  opacity: 1;
  visibility: visible
}

.mh-subdrop li a {
  font-weight: 400;
  color: var(--mid)
}

.mh-subdrop li a:hover {
  color: var(--dark);
  background: var(--light)
}

.mh-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--brand-red);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(197, 40, 47, .3)
}

.mh-nav-cta:hover {
  background: var(--brand-red-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 40, 47, .4)
}

.mh-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.mh-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition)
}

.mh-nav.scrolled .mh-burger span {
  background: var(--dark)
}

.mh-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.mh-burger.open span:nth-child(2) {
  opacity: 0
}

.mh-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mh-mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--brand-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 16px 24px 24px;
  transform: translateY(-110%);
  transition: transform var(--transition);
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto
}

.mh-mobile-menu.open {
  transform: translateY(0)
}

.mh-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.mh-mobile-menu ul li a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition)
}

.mh-mobile-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding-left: 20px;
}

.mh-mobile-submenu {
  padding-left: 16px;
  margin-top: 4px;
}

.mh-mobile-submenu li a {
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}

.mh-mobile-submenu li a:hover {
  color: var(--white);
  background: transparent;
  border-left-color: var(--brand-red);
}

.mh-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: var(--brand-red);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 600
}

/* ============================================================
   HERO
   ============================================================ */
.mh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1233 0%, #152252 35%, var(--brand-navy) 65%, #1a2d5f 100%)
}

.mh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 65% 45%, rgba(27, 45, 107, .5) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 15% 80%, rgba(197, 40, 47, .12) 0%, transparent 55%);
  pointer-events: none
}

.mh-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1
}

.mh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .1;
  filter: saturate(.4)
}

.mh-hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 25%, rgba(27, 45, 107, .2) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(197, 40, 47, .08) 0%, transparent 45%)
}

.mh-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 90px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center
}

.mh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 40, 47, .15);
  border: 1px solid rgba(197, 40, 47, .35);
  color: rgba(255, 255, 255, .9);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px
}

.mh-hero-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-red);
  animation: pulse 2s infinite
}

.mh-hero h1 {
  color: var(--white);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px
}

.mh-hero h1 .accent {
  color: var(--brand-red-lt)
}

.mh-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 520px
}

.mh-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.mh-hero-image {
  position: relative
}

.mh-hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .45);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.mh-hero-image-wrap:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0)
}

.mh-hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.mh-hero-image-chip {
  position: absolute;
  bottom: 24px;
  left: -32px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10
}

.mh-hero-image-chip .chip-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.mh-hero-image-chip .chip-icon svg {
  width: 20px;
  height: 20px;
  color: white
}

.mh-hero-image-chip .chip-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1
}

.mh-hero-image-chip .chip-label {
  font-size: .75rem;
  color: var(--mid);
  font-weight: 500;
  margin-top: 2px
}

.mh-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.mh-hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1
}

.mh-hero-stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--brand-red);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(197, 40, 47, .3)
}

.btn-primary:hover {
  background: var(--brand-red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 40, 47, .4);
  color: var(--white)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, .4);
  transition: all var(--transition)
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
  color: var(--white)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--brand-navy);
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 600;
  border: 1.5px solid var(--brand-navy);
  transition: all var(--transition)
}

.btn-outline:hover {
  background: var(--brand-navy);
  color: var(--white);
  transform: translateY(-2px)
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: .92rem;
  font-weight: 600;
  transition: all var(--transition)
}

.btn-dark:hover {
  background: var(--brand-navy-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white)
}

/* ============================================================
   ABOUT (Home)
   ============================================================ */
.mh-about {
  background: var(--white)
}

.mh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.mh-about-img-wrap {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px
}

.mh-about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.mh-about-img-main img {
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover
}

.mh-about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(27, 45, 107, .35)
}

.mh-about-img-badge .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1
}

.mh-about-img-badge .lbl {
  font-size: .72rem;
  font-weight: 600;
  opacity: .8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.mh-about-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px
}

.mh-about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition)
}

.mh-about-feat:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
  border-color: rgba(27, 45, 107, .08)
}

.mh-about-feat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center
}

.mh-about-feat-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white)
}

.mh-about-feat-title {
  font-size: .9rem;
  font-weight: 650;
  color: var(--dark);
  margin-bottom: 2px
}

.mh-about-feat-desc {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.5
}

/* ============================================================
   STATS BAR
   ============================================================ */
.mh-stats {
  background: var(--brand-navy);
  padding: 0
}

.mh-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.mh-stat-item {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background var(--transition)
}

.mh-stat-item:last-child {
  border-right: none
}

.mh-stat-item:hover {
  background: rgba(255, 255, 255, .04)
}

.mh-stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em
}

.mh-stat-num span {
  color: var(--white)
}

.mh-stat-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .1em;
  text-transform: uppercase
}

/* ============================================================
   SERVICES / CATEGORIES
   ============================================================ */
.mh-services {
  background: var(--light)
}

.mh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.mh-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden
}

.mh-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease
}

.mh-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent
}

.mh-service-card:hover::before {
  transform: scaleX(1)
}

.mh-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 45, 107, .08), rgba(27, 45, 107, .03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition)
}

.mh-service-card:hover .mh-service-icon {
  background: var(--brand-navy);
  transform: scale(1.05)
}

.mh-service-card:hover .mh-service-icon svg {
  color: var(--white)
}

.mh-service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brand-navy);
  transition: color var(--transition)
}

.mh-service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px
}

.mh-service-desc {
  font-size: .85rem;
  color: var(--mid);
  line-height: 1.65
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.mh-products {
  background: var(--white)
}

.mh-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.mh-product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: block
}

.mh-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent
}

.mh-product-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light)
}

.mh-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.mh-product-card:hover .mh-product-img img {
  transform: scale(1.06)
}

.mh-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 18, 51, .85));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease
}

.mh-product-card:hover .mh-product-overlay {
  opacity: 1
}

.mh-product-overlay-actions {
  display: flex;
  gap: 8px
}

.mh-product-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .95);
  color: var(--dark);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  transition: all var(--transition)
}

.mh-product-overlay-btn:hover {
  background: var(--brand-red);
  color: var(--white)
}

.mh-product-body {
  padding: 18px 20px 20px
}

.mh-product-cat {
  font-size: .7rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px
}

.mh-product-cat::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
  flex-shrink: 0
}

.mh-product-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3
}

/* ============================================================
   CTA
   ============================================================ */
.mh-cta {
  background: linear-gradient(135deg, var(--brand-navy-dk) 0%, var(--brand-navy) 100%);
  position: relative;
  overflow: hidden
}

.mh-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 40, 47, .15) 0%, transparent 60%)
}

.mh-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 45, 107, .3) 0%, transparent 60%)
}

.mh-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 72px 0
}

.mh-cta h2 {
  color: var(--white)
}

.mh-cta p {
  color: rgba(255, 255, 255, .55);
  margin-top: 10px;
  font-size: 1rem
}

.mh-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.mh-testimonials {
  background: var(--light)
}

.mh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.mh-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden
}

.mh-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(27, 45, 107, .04);
  font-family: Georgia, serif;
  pointer-events: none
}

.mh-testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.mh-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px
}

.mh-testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: #f5a623
}

.mh-testimonial-text {
  font-size: .92rem;
  color: var(--dark);
  line-height: 1.72;
  margin-bottom: 24px;
  font-style: italic
}

.mh-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.mh-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0
}

.mh-testimonial-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark)
}

.mh-testimonial-role {
  font-size: .78rem;
  color: var(--mid);
  margin-top: 2px
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.mh-why {
  background: var(--white)
}

.mh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.mh-why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition)
}

.mh-why-item:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.mh-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition)
}

.mh-why-item:hover .mh-why-icon {
  background: var(--brand-navy);
  transform: scale(1.08)
}

.mh-why-item:hover .mh-why-icon svg {
  color: var(--white)
}

.mh-why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-navy);
  transition: color var(--transition)
}

.mh-why-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px
}

.mh-why-desc {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.6
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.mh-page-hero {
  background: linear-gradient(160deg, #0a1233 0%, var(--brand-navy) 50%, #1a2d5f 100%);
  padding: 130px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.mh-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none
}

.mh-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 110%, rgba(197, 40, 47, .12) 0%, transparent 60%)
}

.mh-page-hero-inner {
  position: relative;
  z-index: 1
}

.mh-page-hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 10px
}

.mh-page-hero p {
  color: rgba(255, 255, 255, .55)
}

.mh-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px
}

.mh-breadcrumb a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px
}

.mh-breadcrumb a:hover {
  color: var(--white)
}

.mh-breadcrumb-sep {
  color: rgba(255, 255, 255, .2);
  font-size: .85rem
}

.mh-breadcrumb-current {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  font-weight: 600
}

/* ============================================================
   CONTACT
   ============================================================ */
.mh-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start
}

.mh-contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm)
}

.mh-form-group {
  margin-bottom: 18px
}

.mh-form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px
}

.mh-form-group input,
.mh-form-group textarea,
.mh-form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  transition: all var(--transition);
  outline: none
}

.mh-form-group input:focus,
.mh-form-group textarea:focus {
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(27, 45, 107, .08)
}

.mh-form-group textarea {
  resize: vertical;
  min-height: 120px
}

.mh-contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.mh-contact-info-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition)
}

.mh-contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(3px)
}

.mh-contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.mh-contact-info-icon.blue {
  background: rgba(27, 45, 107, .08);
  color: var(--brand-navy)
}

.mh-contact-info-icon.green {
  background: rgba(40, 167, 69, .08);
  color: #28a745
}

.mh-contact-info-icon.orange {
  background: rgba(197, 40, 47, .08);
  color: var(--brand-red)
}

.mh-contact-info-icon svg {
  width: 20px;
  height: 20px
}

.mh-contact-info-title {
  font-size: .75rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.mh-contact-info-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark)
}

.mh-contact-info-value a {
  color: var(--dark);
  transition: color var(--transition)
}

.mh-contact-info-value a:hover {
  color: var(--brand-navy)
}

.mh-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 48px
}

.mh-map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0
}

/* ============================================================
   PRODUCT DETAILS
   ============================================================ */
.mh-product-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start
}

.mh-product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--light)
}

.mh-product-detail-image img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 3/2;
}

.mh-product-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px
}

.mh-tab-btn {
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--mid);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition)
}

.mh-tab-btn.active {
  color: var(--brand-navy);
  border-bottom-color: var(--brand-navy)
}

.mh-product-description {
  font-size: .92rem;
  color: var(--mid);
  line-height: 1.75
}

.mh-product-description h2,
.mh-product-description h3 {
  color: var(--dark);
  margin-bottom: 12px;
  margin-top: 24px
}

.mh-product-description ul {
  padding-left: 20px;
  list-style: disc
}

.mh-product-description ul li {
  margin-bottom: 8px
}

.mh-product-cta-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px
}

.mh-product-cta-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px
}

.mh-sidebar-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.mh-sidebar-ctas .btn-primary,
.mh-sidebar-ctas .btn-outline {
  width: 100%;
  justify-content: center;
  padding: 12px 18px
}

.mh-product-sidebar-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 18px
}

.mh-product-sidebar-section h4 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px
}

.mh-product-list {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.mh-product-list-item a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  color: var(--mid);
  transition: all var(--transition)
}

.mh-product-list-item a:hover {
  background: var(--light);
  color: var(--brand-navy)
}

.mh-video-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--dark)
}

.mh-video-wrap video {
  display: block;
  width: 100%
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mh-about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start
}

.mh-about-page-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md)
}

.mh-about-page-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2/3;
}

.mh-about-founder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light)
}

.mh-about-founder-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white)
}

.mh-about-founder-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark)
}

.mh-about-founder-title {
  font-size: .82rem;
  color: var(--mid);
  margin-top: 2px
}

/* Team */
.mh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.mh-team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition)
}

.mh-team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.mh-team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light)
}

.mh-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.mh-team-card:hover .mh-team-photo img {
  transform: scale(1.05)
}

.mh-team-info {
  padding: 16px 18px
}

.mh-team-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px
}

.mh-team-role {
  font-size: .78rem;
  color: var(--brand-navy);
  font-weight: 600
}

/* ============================================================
   FOOTER
   ============================================================ */
.mh-footer {
  background: var(--brand-navy-dk);
  color: rgba(255, 255, 255, .55)
}

.mh-footer-main {
  padding: 64px 0 44px
}

.mh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px
}

.mh-footer-logo {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px
}

.mh-footer-logo-imgwrap {
  background: rgba(255, 255, 255, .97);
  border-radius: 8px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.mh-footer-logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mh-footer-logo-text {
  display: none
}

.mh-footer-tagline {
  font-size: .84rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .4)
}

.mh-footer-social {
  display: flex;
  gap: 8px
}

.mh-footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition)
}

.mh-footer-social-btn:hover {
  background: var(--brand-red);
  transform: translateY(-2px)
}

.mh-footer-social-btn svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, .7)
}

.mh-footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px
}

.mh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.mh-footer-links a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .4);
  transition: all var(--transition)
}

.mh-footer-links a:hover {
  color: var(--white);
  padding-left: 4px
}

.mh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px
}

.mh-footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 2px
}

.mh-footer-contact-item span {
  font-size: .84rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6
}

.mh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0
}

.mh-footer-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .25)
}

.mh-footer-copy a {
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition)
}

.mh-footer-copy a:hover {
  color: var(--white)
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.fade-up-delay-1 {
  transition-delay: .1s
}

.fade-up-delay-2 {
  transition-delay: .2s
}

.fade-up-delay-3 {
  transition-delay: .3s
}

.fade-up-delay-4 {
  transition-delay: .4s
}

.fade-up-delay-5 {
  transition-delay: .5s
}

.fade-up-delay-6 {
  transition-delay: .6s
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(197, 40, 47, .4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(197, 40, 47, 0)
  }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.mh-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27, 45, 107, .35);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  cursor: pointer
}

.mh-back-top.show {
  opacity: 1;
  visibility: visible
}

.mh-back-top:hover {
  transform: translateY(-3px);
  background: var(--brand-red)
}

.mh-back-top svg {
  width: 16px;
  height: 16px
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px) {
  .mh-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 125px
  }

  .mh-hero-desc {
    margin: 0 auto 36px
  }

  .mh-hero-actions {
    justify-content: center
  }

  .mh-hero-stats {
    justify-content: center
  }

  .mh-hero-image {
    display: none
  }

  .mh-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .mh-stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mh-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .mh-stat-item:nth-last-child(-n+2) {
    border-bottom: none
  }

  .mh-why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mh-team-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .mh-services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mh-products-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mh-about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .mh-about-page-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .mh-contact-grid {
    grid-template-columns: 1fr
  }

  .mh-product-detail-grid {
    grid-template-columns: 1fr
  }

  .mh-testimonials-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mh-cta-inner {
    flex-direction: column;
    text-align: center
  }

  .mh-cta-actions {
    justify-content: center
  }
}

@media(max-width:768px) {
  .mh-mobile-menu {
    display: block
  }

  .mh-menu {
    display: none
  }

  .mh-nav-cta {
    display: none
  }

  .mh-burger {
    display: flex
  }

  /* Keep header dark blue on mobile */
  .mh-nav {
    background: var(--brand-navy) !important;
  }

  .mh-nav.scrolled {
    background: var(--brand-navy) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .mh-nav.scrolled .mh-logo img {
    filter: brightness(0) invert(1) !important;
  }

  .mh-nav.scrolled .mh-burger span {
    background: var(--white) !important;
  }

  .section {
    padding: 64px 0
  }

  .mh-hero-inner {
    padding: 115px 24px 60px
  }

  .mh-services-grid,
  .mh-products-grid,
  .mh-testimonials-grid {
    grid-template-columns: 1fr
  }

  .mh-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .mh-contact-form-card {
    padding: 24px 18px
  }

  .mh-about-img-badge {
    right: 0;
    bottom: 0
  }

  .mh-why-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .mh-team-grid {
    grid-template-columns: 1fr
  }

  .mh-footer-bottom .container {
    flex-direction: column;
    text-align: center
  }

  .mh-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .mh-hero h1 {
    font-size: 2rem
  }

  .mh-hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100%
  }

  .mh-hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center
  }

  .mh-hero-stats {
    flex-wrap: wrap;
    gap: 20px
  }

  .mh-team-grid,
  .mh-why-grid {
    grid-template-columns: 1fr
  }

  .mh-form-row {
    grid-template-columns: 1fr !important;
    gap: 16px
  }

  .mh-contact-form-card {
    padding: 20px 14px
  }

  .section {
    padding: 48px 0
  }

  .section-title-block {
    margin-bottom: 36px
  }
}