/* ============================================================================
   MAIPL — Corporate Infrastructure Design System
   Standalone stylesheet for the redesigned front-end (mp- prefixed markup).
   Loads LAST in the cascade; deliberately self-contained so it does not
   depend on (or fight with) the legacy LTN theme css.
   ============================================================================ */

:root {
  --mp-navy:        #0b1f3a;
  --mp-navy-deep:   #071527;
  --mp-navy-mid:    #12305c;
  --mp-amber:       #f0a500;
  --mp-amber-deep:  #c98a02;
  --mp-ink:         #13223a;
  --mp-body:        #52627a;
  --mp-line:        #e3e9f1;
  --mp-bg-light:    #f5f7fa;
  --mp-white:       #ffffff;
  --mp-font-head:   'Plus Jakarta Sans', sans-serif;
  --mp-font-body:   'Inter', sans-serif;
  --mp-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --mp-shadow:      0 18px 40px -18px rgba(7, 21, 39, 0.25);
}

/* ---------- Scoped resets (win over legacy theme globals) ------------------ */
.mp-header *, .mp-hero *, .mp-section *, .mp-footer *,
.mp-drawer *, .mp-topbar * {
  box-sizing: border-box;
}
.mp-header ul, .mp-footer ul, .mp-drawer ul, .mp-topbar ul,
.mp-section ul {
  margin: 0; padding: 0; list-style: none;
}
.mp-header a, .mp-footer a, .mp-drawer a, .mp-topbar a, .mp-section a {
  text-decoration: none;
  transition: all 0.25s var(--mp-ease);
}
.mp-section img { border-radius: 0 !important; box-shadow: none !important; }

.mp-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================================
   TOP UTILITY BAR
   ============================================================================ */
.mp-topbar {
  background: var(--mp-navy-deep);
  font-family: var(--mp-font-body);
  font-size: 13px;
  color: #9fb1c9;
}
.mp-topbar .mp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}
.mp-topbar a { color: #9fb1c9; display: inline-flex; align-items: center; gap: 7px; }
.mp-topbar a:hover { color: var(--mp-amber); }
.mp-topbar-left, .mp-topbar-right { display: flex; gap: 26px; flex-wrap: wrap; }
.mp-topbar i { color: var(--mp-amber); font-size: 12px; }
@media (max-width: 767px) {
  .mp-topbar-right { display: none; }
  .mp-topbar { font-size: 12px; }
}

/* ============================================================================
   HEADER / NAVIGATION
   ============================================================================ */
.mp-header {
  background: var(--mp-white);
  font-family: var(--mp-font-body);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--mp-line);
  transition: box-shadow 0.3s var(--mp-ease);
}
.mp-header.is-stuck {
  box-shadow: 0 12px 30px -18px rgba(7, 21, 39, 0.35);
}
.mp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.mp-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.mp-logo img { height: 58px; width: auto; display: block; }
.mp-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.mp-logo-text b {
  font-family: var(--mp-font-head);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--mp-navy);
  letter-spacing: -0.01em;
}
.mp-logo-text span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--mp-amber-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
@media (max-width: 1350px) { .mp-logo-text { display: none; } }

/* -------- Desktop nav -------- */
.mp-nav { display: flex; align-items: center; }
.mp-nav > ul { display: flex; align-items: center; gap: 2px; }
.mp-nav > ul > li { position: relative; }
.mp-nav > ul > li > a {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mp-ink);
  padding: 30px 13px;
  position: relative;
  white-space: nowrap;
}
.mp-nav > ul > li > a::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 22px;
  height: 2px;
  background: var(--mp-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--mp-ease);
}
.mp-nav > ul > li:hover > a { color: var(--mp-navy-mid); }
.mp-nav > ul > li:hover > a::after { transform: scaleX(1); }

/* Dropdowns */
.mp-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--mp-white);
  border: 1px solid var(--mp-line);
  border-top: 3px solid var(--mp-amber);
  box-shadow: var(--mp-shadow);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s var(--mp-ease);
  z-index: 50;
}
.mp-nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mp-nav li ul li { position: relative; }
.mp-nav li ul li a {
  display: block;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--mp-body);
}
.mp-nav li ul li a:hover {
  color: var(--mp-navy);
  background: var(--mp-bg-light);
  padding-left: 27px;
}
/* Nested flyout */
.mp-nav li ul li ul {
  top: -13px;
  left: 100%;
}

/* -------- Header actions -------- */
.mp-header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.mp-icon-btn {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mp-line);
  border-radius: 50%;
  background: transparent;
  color: var(--mp-ink);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s var(--mp-ease);
}
.mp-icon-btn:hover { background: var(--mp-navy); color: #fff; border-color: var(--mp-navy); }
.mp-burger { display: none; }

/* -------- Search bar (slides under header) -------- */
.mp-searchbar {
  display: none;
  border-top: 1px solid var(--mp-line);
  background: var(--mp-bg-light);
  padding: 14px 0;
}
.mp-header.mp-search-open .mp-searchbar { display: block; }
.mp-searchbar .mp-container { position: relative; }
.mp-searchbar input {
  width: 100%;
  border: 1px solid var(--mp-line);
  border-radius: 6px;
  background: #fff;
  padding: 12px 18px;
  font-family: var(--mp-font-body);
  font-size: 14.5px;
  color: var(--mp-ink);
  outline: none;
}
.mp-searchbar input:focus { border-color: var(--mp-amber); }

/* autocomplete plugin dropdown */
.autocomplete-suggestions {
  border: 1px solid var(--mp-line) !important;
  background: #fff !important;
  box-shadow: var(--mp-shadow) !important;
  border-radius: 0 0 8px 8px;
}
.autocomplete-suggestion {
  padding: 11px 18px !important;
  font-family: var(--mp-font-body) !important;
  font-size: 14px !important;
  color: var(--mp-body) !important;
  cursor: pointer;
}
.autocomplete-suggestion:hover { background: var(--mp-bg-light) !important; color: var(--mp-navy) !important; }

@media (max-width: 1199px) {
  .mp-nav { display: none; }
  .mp-burger { display: inline-flex; }
  .mp-header-inner { min-height: 70px; }
  .mp-logo img { height: 46px; }
}

/* ============================================================================
   MOBILE DRAWER
   ============================================================================ */
.mp-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(330px, 86vw);
  height: 100dvh;
  background: var(--mp-navy-deep);
  z-index: 1001;
  transform: translateX(102%);
  transition: transform 0.35s var(--mp-ease);
  display: flex;
  flex-direction: column;
  font-family: var(--mp-font-body);
}
.mp-drawer.is-open { transform: translateX(0); }
.mp-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 39, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--mp-ease);
}
.mp-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.mp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mp-drawer-head img { height: 40px; width: auto; }
.mp-drawer-close {
  background: none; border: none;
  color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; padding: 4px 8px;
}
.mp-drawer-menu { flex: 1; overflow-y: auto; padding: 12px 0; }
.mp-drawer-menu a {
  display: block;
  padding: 13px 24px;
  color: #c9d6e6;
  font-size: 14.5px;
  font-weight: 500;
}
.mp-drawer-menu a:hover { color: var(--mp-amber); }
.mp-drawer-menu details { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mp-drawer-menu summary {
  padding: 13px 24px;
  color: #c9d6e6;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mp-drawer-menu summary::-webkit-details-marker { display: none; }
.mp-drawer-menu summary::after {
  content: '+';
  color: var(--mp-amber);
  font-size: 17px;
  font-weight: 600;
}
.mp-drawer-menu details[open] summary::after { content: '\2212'; }
.mp-drawer-menu details ul { background: rgba(0,0,0,0.25); }
.mp-drawer-menu details ul a { padding: 11px 24px 11px 38px; font-size: 13.5px; color: #9fb1c9; }
.mp-drawer-menu > ul > li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mp-drawer-social {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mp-drawer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #c9d6e6; font-size: 14px;
}
.mp-drawer-social a:hover { background: var(--mp-amber); color: var(--mp-navy-deep); border-color: var(--mp-amber); }

/* ============================================================================
   HERO
   ============================================================================ */
.mp-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--mp-navy-deep);
  overflow: hidden;
  font-family: var(--mp-font-body);
}
.mp-hero video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.mp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,39,0.88) 0%, rgba(7,21,39,0.55) 45%, rgba(7,21,39,0.25) 100%);
  z-index: 1;
}
.mp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0;
  animation: mp-rise 0.9s var(--mp-ease) both;
}
@keyframes mp-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mp-amber);
  margin-bottom: 26px;
}
.mp-hero-eyebrow::before {
  content: '';
  width: 46px; height: 2px;
  background: var(--mp-amber);
}
.mp-hero h1 {
  font-family: var(--mp-font-head);
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 26px;
}
.mp-hero h1 em {
  font-style: normal;
  color: var(--mp-amber);
}
.mp-hero-sub {
  font-size: clamp(15px, 1.8vw, 17.5px);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 40px;
}
.mp-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mp-font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--mp-ease);
}
.mp-btn-amber {
  background: var(--mp-amber);
  color: var(--mp-navy-deep) !important;
}
.mp-btn-amber:hover {
  background: #ffb81f;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(240,165,0,0.55);
}
.mp-btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.mp-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.mp-btn-navy {
  background: var(--mp-navy);
  color: #fff !important;
}
.mp-btn-navy:hover {
  background: var(--mp-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(11,31,58,0.5);
}

/* hero audio + scroll cue */
.mp-hero #audio-control {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 3;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.mp-hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.mp-hero-scroll span {
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: mp-wheel 1.6s infinite ease-in-out;
}
@keyframes mp-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}

/* ============================================================================
   STATS BAND
   ============================================================================ */
.mp-stats {
  background: var(--mp-navy);
  font-family: var(--mp-font-body);
  position: relative;
}
.mp-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--mp-amber) 0%, transparent 60%);
}
.mp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.mp-stat {
  padding: 52px 34px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 18px;
  align-items: center;
}
.mp-stat:last-child { border-right: none; }
.mp-stat-icon img {
  height: 44px; width: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.mp-stat-num {
  font-family: var(--mp-font-head);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.mp-stat-num b { color: var(--mp-amber); font-weight: 800; }
.mp-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fa3c9;
  color: #8fa3c9;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .mp-stat { padding: 34px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); }
}

/* ============================================================================
   GENERIC SECTION SCAFFOLD
   ============================================================================ */
.mp-section {
  font-family: var(--mp-font-body);
  padding: 104px 0;
}
.mp-section--light { background: var(--mp-bg-light); }
.mp-section--white { background: #fff; }
.mp-section--navy  { background: var(--mp-navy-deep); }

.mp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mp-amber-deep);
  margin-bottom: 16px;
}
.mp-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--mp-amber);
}
.mp-section--navy .mp-eyebrow { color: var(--mp-amber); }

.mp-title {
  font-family: var(--mp-font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--mp-ink);
  margin: 0 0 18px;
}
.mp-section--navy .mp-title { color: #fff; }

.mp-lead {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--mp-body);
  margin: 0 0 18px;
}
.mp-section--navy .mp-lead { color: #9fb1c9; }

.mp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px;
}
.mp-section-head .mp-title { margin-bottom: 0; max-width: 640px; }
.mp-section-link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mp-navy) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--mp-amber);
  padding-bottom: 6px;
  white-space: nowrap;
}
.mp-section-link:hover { color: var(--mp-amber-deep) !important; gap: 13px; }
.mp-section--navy .mp-section-link { color: #fff !important; }
@media (max-width: 767px) {
  .mp-section { padding: 68px 0; }
  .mp-section-head { flex-direction: column; align-items: flex-start; margin-bottom: 38px; }
}

/* ============================================================================
   WHO WE ARE
   ============================================================================ */
.mp-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.mp-about-quote {
  border-left: 3px solid var(--mp-amber);
  background: var(--mp-bg-light);
  padding: 22px 26px;
  margin: 26px 0 30px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--mp-body);
}
.mp-about-media { position: relative; }
.mp-about-media::before {
  content: '';
  position: absolute;
  top: -22px; right: -22px;
  width: 58%; height: 58%;
  background:
    radial-gradient(circle, rgba(240,165,0,0.45) 2px, transparent 2.5px);
  background-size: 16px 16px;
  z-index: 0;
}
.mp-about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.mp-about-badge {
  position: absolute;
  z-index: 2;
  left: -26px; bottom: 38px;
  background: var(--mp-navy);
  color: #fff;
  padding: 26px 30px;
  font-family: var(--mp-font-head);
  border-left: 4px solid var(--mp-amber);
  box-shadow: var(--mp-shadow);
}
.mp-about-badge b {
  display: block;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  color: var(--mp-amber);
}
.mp-about-badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb1c9;
}
@media (max-width: 991px) {
  .mp-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .mp-about-media img { height: 400px; }
  .mp-about-badge { left: 16px; bottom: 16px; padding: 18px 22px; }
  .mp-about-badge b { font-size: 30px; }
}

/* ============================================================================
   SERVICES
   ============================================================================ */
.mp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
  counter-reset: mpsvc;
}
.mp-service-card {
  counter-increment: mpsvc;
  position: relative;
  background: #fff;
  border: 1px solid var(--mp-line);
  padding: 44px 38px;
  overflow: hidden;
  transition: all 0.3s var(--mp-ease);
  display: flex;
  flex-direction: column;
}
.mp-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--mp-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--mp-ease);
}
.mp-service-card::after {
  content: counter(mpsvc, decimal-leading-zero);
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--mp-font-head);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: rgba(11,31,58,0.06);
  pointer-events: none;
}
.mp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mp-shadow);
  border-color: transparent;
}
.mp-service-card:hover::before { transform: scaleX(1); }
.mp-service-icon {
  width: 74px; height: 74px;
  background: var(--mp-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.mp-service-icon img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.mp-service-card h3 {
  font-family: var(--mp-font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.mp-service-card h3 a { color: var(--mp-ink) !important; }
.mp-service-card h3 a:hover { color: var(--mp-amber-deep) !important; }
.mp-service-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mp-body);
  margin: 0 0 24px;
  flex: 1;
}
.mp-arrow-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mp-navy) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.mp-arrow-link::after { content: '\2192'; transition: transform 0.25s var(--mp-ease); }
.mp-arrow-link:hover { color: var(--mp-amber-deep) !important; }
.mp-arrow-link:hover::after { transform: translateX(5px); }

/* ============================================================================
   SECTORS (navy band, image tiles)
   ============================================================================ */
.mp-sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.mp-sector-tile {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--mp-navy-mid);
  display: block;
}
.mp-sector-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--mp-ease);
}
.mp-sector-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,39,0) 35%, rgba(7,21,39,0.92) 100%);
}
.mp-sector-tile:hover img { transform: scale(1.07); }
.mp-sector-name {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 22px 24px;
  font-family: var(--mp-font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.mp-sector-name::before {
  content: '';
  display: block;
  width: 34px; height: 3px;
  background: var(--mp-amber);
  margin-bottom: 12px;
  transition: width 0.3s var(--mp-ease);
}
.mp-sector-tile:hover .mp-sector-name::before { width: 56px; }

/* ============================================================================
   PROJECTS
   ============================================================================ */
.mp-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
}
.mp-project-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--mp-navy-mid);
  display: block;
}
.mp-project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--mp-ease);
}
.mp-project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,39,0.05) 30%, rgba(7,21,39,0.94) 100%);
}
.mp-project-card:hover img { transform: scale(1.06); }
.mp-project-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 28px;
}
.mp-project-tag {
  display: inline-block;
  background: var(--mp-amber);
  color: var(--mp-navy-deep);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.mp-project-info h3 {
  font-family: var(--mp-font-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.mp-project-info h3 a { color: #fff !important; }
.mp-project-info h3 a:hover { color: var(--mp-amber) !important; }

/* ============================================================================
   VALUES / WHY CHOOSE US
   ============================================================================ */
.mp-values-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.mp-values-list { margin-top: 30px !important; display: grid; gap: 14px; }
.mp-values-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--mp-ink);
  background: #fff;
  border: 1px solid var(--mp-line);
  padding: 15px 20px;
  transition: all 0.25s var(--mp-ease);
}
.mp-values-list li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mp-navy);
  color: var(--mp-amber);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
}
.mp-values-list li:hover {
  border-color: var(--mp-amber);
  transform: translateX(6px);
}
/* strip legacy inline links styling inside DB text */
.mp-values-copy a { color: var(--mp-navy) !important; font-weight: 600; }
.mp-values-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mp-values-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.mp-values-media a:first-child {
  grid-column: 1 / -1;
}
.mp-values-media a:first-child img { height: 320px; }
@media (max-width: 991px) {
  .mp-values-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ============================================================================
   PLANS (bootstrap tabs, restyled)
   ============================================================================ */
.mp-plans .nav {
  display: inline-flex !important;
  gap: 4px;
  border: 1px solid var(--mp-line);
  background: #fff;
  padding: 5px;
  margin-bottom: 42px;
}
.mp-plans .nav a {
  padding: 11px 26px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mp-body) !important;
  border: none !important;
  background: none;
}
.mp-plans .nav a.active {
  background: var(--mp-navy) !important;
  color: #fff !important;
}
.mp-plan-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
  border: 1px solid var(--mp-line);
}
.mp-plan-info {
  background: var(--mp-navy);
  padding: 58px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mp-plan-info h2 {
  font-family: var(--mp-font-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
}
.mp-plan-info p { color: #9fb1c9; font-size: 14.5px; line-height: 1.8; margin: 0; }
.mp-plan-img {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-plan-img img { max-width: 100%; max-height: 420px; object-fit: contain; }
@media (max-width: 991px) {
  .mp-plan-inner { grid-template-columns: 1fr; }
  .mp-plan-info { padding: 38px 30px; }
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */
.mp-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.mp-testi-card {
  background: #fff;
  border: 1px solid var(--mp-line);
  border-top: 3px solid var(--mp-amber);
  padding: 40px 34px;
  transition: all 0.3s var(--mp-ease);
}
.mp-testi-card:hover { transform: translateY(-5px); box-shadow: var(--mp-shadow); }
.mp-testi-card blockquote {
  margin: 0 0 26px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.85;
  color: var(--mp-body);
}
.mp-testi-card blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--mp-font-head);
  font-size: 54px;
  font-weight: 800;
  line-height: 0.6;
  color: var(--mp-amber);
  margin-bottom: 16px;
}
.mp-testi-author { display: flex; align-items: center; gap: 14px; }
.mp-testi-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mp-amber);
}
.mp-testi-author b {
  display: block;
  font-family: var(--mp-font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--mp-ink);
}
.mp-testi-author span { font-size: 12.5px; color: var(--mp-body); }

/* ============================================================================
   NEWS
   ============================================================================ */
.mp-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 26px;
}
.mp-news-card {
  background: #fff;
  border: 1px solid var(--mp-line);
  overflow: hidden;
  transition: all 0.3s var(--mp-ease);
}
.mp-news-card:hover { transform: translateY(-5px); box-shadow: var(--mp-shadow); }
.mp-news-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.mp-news-body { padding: 26px 26px 24px; }
.mp-news-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mp-amber-deep);
}
.mp-news-body h3 {
  font-family: var(--mp-font-head);
  font-size: 17.5px;
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 0 16px;
}
.mp-news-body h3 a { color: var(--mp-ink) !important; }
.mp-news-body h3 a:hover { color: var(--mp-amber-deep) !important; }

/* ============================================================================
   CLIENTS
   ============================================================================ */
.mp-clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.mp-client-logo {
  flex: 0 1 170px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--mp-line);
  padding: 18px;
}
.mp-client-logo img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s var(--mp-ease);
}
.mp-client-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================================================
   VIDEO STRIP
   ============================================================================ */
.mp-video-strip {
  position: relative;
  min-height: 380px;
  background: var(--mp-navy) url('../img/bg/19.jpg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-video-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,21,39,0.72);
}
.mp-video-strip a {
  position: relative;
  z-index: 2;
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mp-amber);
  border-radius: 50%;
  color: var(--mp-navy-deep) !important;
  font-size: 22px;
  animation: mp-pulse 2s infinite;
}
@keyframes mp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(240,165,0,0.45); }
  70%  { box-shadow: 0 0 0 26px rgba(240,165,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,165,0,0); }
}

/* ============================================================================
   CTA BAND
   ============================================================================ */
.mp-cta {
  background:
    linear-gradient(100deg, var(--mp-navy-deep) 0%, var(--mp-navy) 70%, var(--mp-navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  font-family: var(--mp-font-body);
}
.mp-cta::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 340px; height: 340px;
  border: 42px solid rgba(240,165,0,0.09);
  border-radius: 50%;
}
.mp-cta .mp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.mp-cta h2 {
  font-family: var(--mp-font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}
.mp-cta p { color: #9fb1c9; font-size: 15.5px; margin: 0; }
@media (max-width: 850px) {
  .mp-cta .mp-container { flex-direction: column; text-align: center; }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.mp-footer {
  background: var(--mp-navy-deep);
  font-family: var(--mp-font-body);
  color: #8fa3c9;
}
.mp-footer-top {
  padding: 80px 0 56px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
  gap: 48px;
}
.mp-footer h4 {
  font-family: var(--mp-font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 26px;
  position: relative;
  padding-bottom: 14px;
}
.mp-footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 3px;
  background: var(--mp-amber);
}
.mp-footer-brand img { height: 54px; width: auto; margin-bottom: 20px; }
.mp-footer-brand p { font-size: 13.5px; line-height: 1.8; margin: 0 0 22px; color: #8fa3c9; }
.mp-footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 13px;
}
.mp-footer-contact i {
  color: var(--mp-amber);
  font-size: 14px;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.mp-footer a { color: #8fa3c9; }
.mp-footer a:hover { color: var(--mp-amber); }
.mp-footer-links li { margin-bottom: 12px; }
.mp-footer-links a {
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mp-footer-links a::before {
  content: '\203A';
  color: var(--mp-amber);
  font-weight: 700;
}
.mp-footer-map iframe {
  width: 100% !important;
  height: 200px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  filter: grayscale(0.3);
  display: block;
}
.mp-footer-social {
  display: flex;
  gap: 10px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  justify-content: center;
}
.mp-footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  font-size: 14px;
}
.mp-footer-social a:hover {
  background: var(--mp-amber);
  border-color: var(--mp-amber);
  color: var(--mp-navy-deep);
  transform: translateY(-3px);
}
.mp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}
.mp-footer-bottom a { color: #8fa3c9; font-weight: 600; }
@media (max-width: 1100px) {
  .mp-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mp-footer-top { grid-template-columns: 1fr; gap: 40px; padding: 58px 0 40px; }
}

/* ============================================================================
   SCROLL REVEAL (mp)
   ============================================================================ */
.mp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--mp-ease), transform 0.7s var(--mp-ease);
}
.mp-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mp-reveal { opacity: 1; transform: none; transition: none; }
}

html { scroll-behavior: smooth; }

/* Values links arrive as inline <a> tags inside DB-managed copy — render each
   as a checklist row */
.mp-values-copy a {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--mp-line);
  padding: 13px 18px;
  margin: 10px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mp-ink) !important;
  transition: all 0.25s var(--mp-ease);
}
.mp-values-copy a::before {
  content: '\2713';
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mp-navy);
  color: var(--mp-amber);
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
}
.mp-values-copy a:hover {
  border-color: var(--mp-amber);
  transform: translateX(6px);
}
