/* ================================
   PROFESSIONAL SERVICE SECTION
================================ */

.pro-service-section {
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.pro-service-heading {
  max-width: 750px;
}

.pro-service-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff6c00;
  margin-bottom: 15px;
}

.pro-service-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1727;
  margin-bottom: 20px;
  line-height: 1.3;
}

.pro-service-text {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.8;
}

/* Card */
.pro-service-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #eef1f6;
}

.pro-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00d084, #00b4d8);
  transition: 0.5s;
}

.pro-service-card:hover::before {
  left: 0;
}

.pro-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Icon */
.pro-service-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #00d084, #00b4d8);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
}

.pro-service-icon i {
  color: #fff;
  font-size: 30px;
}

.pro-service-card:hover .pro-service-icon {
  transform: rotate(-8deg) scale(1.05);
}

/* Content */
.pro-service-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0b1727;
  margin-bottom: 15px;
}

.pro-service-card p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Button */
.pro-service-btn {
  text-decoration: none;
  font-weight: 600;
  color: #2A5E6A;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.pro-service-btn i {
  transition: 0.3s;
}

.pro-service-btn:hover {
  color: #0b1727;
}

.pro-service-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .pro-service-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .pro-service-title {
    font-size: 28px;
  }

  .pro-service-card {
    padding: 30px 25px;
  }
}



/* Bottom Center Button */
.elite-service-bottom {
  position: relative;
  z-index: 2;
}

.elite-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: #2A5E6A;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 60px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 179, 0.20);
}

.elite-more-btn i {
  transition: 0.3s;
}

.elite-more-btn:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 255, 179, 0.30);
}

.elite-more-btn:hover i {
  transform: translateX(5px);
}




/* ───── FLOATING NAV ───── */
.esg-float-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.esg-fnav-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  border-radius: 100px;
  background: #ffffff;
  border: 1.5px solid #cce4f5;
  box-shadow: 0 3px 16px rgba(0, 120, 180, 0.12);
  overflow: hidden;
  height: 42px;
  max-width: 42px;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s, box-shadow 0.25s;
}

.esg-fnav-link:hover,
.esg-fnav-link.esg-fnav-on {
  max-width: 152px;
  border-color: #0096b4;
  box-shadow: 0 6px 24px rgba(0, 150, 180, 0.22);
}

.esg-fnav-link.esg-fnav-on {
  background: #e4f6fc;
}

.esg-fnav-icon {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 1px;
  flex-shrink: 0;
}

.esg-fnav-d .esg-fnav-icon {
  background: #dff0fb;
}

.esg-fnav-s .esg-fnav-icon {
  background: #fff3dc;
}

.esg-fnav-g .esg-fnav-icon {
  background: #dcf5ec;
}

.esg-fnav-label {
  font-size: 12px;
  font-weight: 500;
  color: #0d3050;
  white-space: nowrap;
  padding-right: 16px;
  opacity: 0;
  transition: opacity 0.18s 0.12s;
}

.esg-fnav-link:hover .esg-fnav-label,
.esg-fnav-link.esg-fnav-on .esg-fnav-label {
  opacity: 1;
}

/* ───── TOP NAV ───── */
.esg-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(240, 246, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #cce4f5;
  padding: 13px 0;
}

.esg-nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.esg-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #0d1f35;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.esg-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, #00b0cc, #0076c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.esg-nav-badge {
  font-size: 11px;
  font-weight: 500;
  background: #dff5fb;
  color: #006e88;
  border: 1px solid #aadfee;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ───── CONTAINER ───── */
.esg-wrap {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ───── HERO ───── */
.esg-hero {
  padding: 76px 0 54px;
}

.esg-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: center;
}

.esg-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0090aa;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.esg-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: #00aac8;
  border-radius: 2px;
}

.esg-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #071525;
  margin-bottom: 18px;
}

.esg-hero h1 em {
  font-style: normal;
  color: #0090b0;
}

.esg-hero-desc {
  font-size: 15px;
  color: #486880;
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.esg-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.esg-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0090b0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s;
}

.esg-btn-solid:hover {
  background: #007494;
  transform: translateY(-1px);
}

.esg-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #0090b0;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid #aaddee;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.esg-btn-ghost:hover {
  border-color: #0090b0;
  background: #e4f5fa;
}

/* hero side panel */
.esg-side-panel {
  background: #ffffff;
  border: 1px solid #cce4f5;
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 28px rgba(0, 130, 180, 0.08);
}

.esg-sp-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4f9fd;
  border: 1px solid #daedf8;
  transition: background 0.2s;
}

.esg-sp-row:hover {
  background: #e6f4fb;
}

.esg-sp-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.esg-sp-row:nth-child(1) .esg-sp-icon {
  background: #dff0fb;
}

.esg-sp-row:nth-child(2) .esg-sp-icon {
  background: #fff8e0;
}

.esg-sp-row:nth-child(3) .esg-sp-icon {
  background: #dff7ee;
}

.esg-sp-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d1f35;
  margin-bottom: 2px;
}

.esg-sp-sub {
  font-size: 11px;
  color: #7898b0;
}

/* ───── STATS ───── */
.esg-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 44px 0 72px;
}

.esg-stat {
  background: #fff;
  border: 1px solid #cce4f5;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 130, 180, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.esg-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0, 130, 180, 0.12);
}

.esg-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #0090b0;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.esg-stat-l {
  font-size: 12px;
  color: #7898b0;
  letter-spacing: 0.03em;
}

/* ───── SECTION TITLE ───── */
.esg-sh {
  margin-bottom: 34px;
}

.esg-sh-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0090b0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.esg-sh-tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #0090b0;
  border-radius: 2px;
}

.esg-sh h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #071525;
  margin-bottom: 7px;
}

.esg-sh p {
  font-size: 14px;
  color: #486880;
  max-width: 580px;
  line-height: 1.7;
}

/* ───── INTRO CARD ───── */
.esg-intro {
  background: #fff;
  border: 1px solid #cce4f5;
  border-left: 4px solid #00b4cc;
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin-bottom: 38px;
  box-shadow: 0 2px 10px rgba(0, 130, 180, 0.06);
}

.esg-intro p {
  font-size: 14.5px;
  color: #385870;
  line-height: 1.82;
}

.esg-intro p strong {
  color: #007494;
  font-weight: 500;
}

/* ───── STEPS GRID ───── */
.esg-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 80px;
}

.esg-step {
  background: #fff;
  border: 1px solid #cce4f5;
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
}

.esg-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b4cc, #38bdf8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s;
}

.esg-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 130, 180, 0.13);
}

.esg-step:hover::after {
  transform: scaleX(1);
}

.esg-step-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.esg-step-n {
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #dff0fb;
  border: 1px solid #aad8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #0076a0;
}

.esg-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0d1f35;
  line-height: 1.35;
  padding-top: 4px;
}

.esg-step p {
  font-size: 12.5px;
  color: #6888a0;
  line-height: 1.6;
}

/* ───── SOLAR SECTION ───── */
.esg-solar {
  margin-bottom: 80px;
}

.esg-solar-intro {
  background: #fff;
  border: 1px solid #cce4f5;
  border-left: 4px solid #38bdf8;
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0, 130, 180, 0.06);
}

.esg-solar-intro p {
  font-size: 14.5px;
  color: #385870;
  line-height: 1.82;
}

.esg-solar-intro p strong {
  color: #007494;
  font-weight: 500;
}

.esg-solar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

/* card base */
.esg-sc {
  border-radius: 18px;
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s, box-shadow 0.24s;
  cursor: default;
}

.esg-sc:hover {
  transform: translateY(-5px);
}

.esg-sc::before {
  content: '';
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  opacity: 0.13;
  transition: transform 0.3s;
}

.esg-sc:hover::before {
  transform: scale(1.5);
}

.esg-sc-ong {
  background: #e4f8fd;
  border: 1px solid #8ad8ee;
  box-shadow: 0 4px 18px rgba(0, 180, 210, 0.1);
}

.esg-sc-ong::before {
  background: #00bcd4;
}

.esg-sc-ofg {
  background: #fffbea;
  border: 1px solid #f0d780;
  box-shadow: 0 4px 18px rgba(220, 170, 0, 0.08);
}

.esg-sc-ofg::before {
  background: #f5c700;
}

.esg-sc-hyb {
  background: #edf3ff;
  border: 1px solid #a0c0f0;
  box-shadow: 0 4px 18px rgba(30, 90, 210, 0.08);
}

.esg-sc-hyb::before {
  background: #1e6ae0;
}

.esg-sc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.esg-sc-ong .esg-sc-icon {
  background: rgba(0, 188, 212, 0.16);
}

.esg-sc-ofg .esg-sc-icon {
  background: rgba(240, 190, 0, 0.16);
}

.esg-sc-hyb .esg-sc-icon {
  background: rgba(30, 106, 224, 0.14);
}

.esg-sc h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.esg-sc-ong h3 {
  color: #005c78;
}

.esg-sc-ofg h3 {
  color: #6e4400;
}

.esg-sc-hyb h3 {
  color: #0e3a90;
}

.esg-sc p {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.esg-sc-ong p {
  color: #207090;
}

.esg-sc-ofg p {
  color: #825218;
}

.esg-sc-hyb p {
  color: #1a4caa;
}

.esg-sc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.esg-sc-ong .esg-sc-badge {
  background: rgba(0, 188, 212, 0.16);
  color: #005c78;
}

.esg-sc-ofg .esg-sc-badge {
  background: rgba(240, 190, 0, 0.16);
  color: #6e4400;
}

.esg-sc-hyb .esg-sc-badge {
  background: rgba(30, 106, 224, 0.14);
  color: #0e3a90;
}

/* ───── SUBSIDY ───── */
.esg-sub-box {
  background: linear-gradient(118deg, #e0f7fc 0%, #eaf2ff 100%);
  border: 1px solid #88d4ea;
  border-radius: 20px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 4px 18px rgba(0, 150, 180, 0.08);
}

.esg-sub-badge {
  min-width: 74px;
  height: 74px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0090b0, #38bdf8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 144, 176, 0.3);
  flex-shrink: 0;
}

.esg-sub-pct {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.esg-sub-lbl {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.esg-sub-box h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #003650;
  margin-bottom: 6px;
}

.esg-sub-box p {
  font-size: 13px;
  color: #25607a;
  line-height: 1.65;
}

.esg-sub-box p strong {
  color: #00536e;
  font-weight: 600;
}

/* ───── FOOTER ───── */
.esg-footer {
  border-top: 1px solid #cce4f5;
  padding: 34px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.esg-foot-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0d1f35;
}

.esg-foot-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.esg-ftag {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #bddcf0;
  color: #4a7090;
  background: #eef6fc;
  transition: all 0.2s;
}

.esg-ftag:hover {
  border-color: #0090b0;
  color: #0090b0;
  background: #e0f5fb;
}

.esg-foot-copy {
  font-size: 12px;
  color: #99baca;
}

/* ───── REVEAL ───── */
.esg-rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.54s ease, transform 0.54s ease;
}

.esg-rv.esg-in {
  opacity: 1;
  transform: translateY(0);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 820px) {
  .esg-hero-grid {
    grid-template-columns: 1fr;
  }

  .esg-side-panel {
    display: none;
  }

  .esg-solar-grid {
    grid-template-columns: 1fr;
  }

  .esg-stats {
    grid-template-columns: 1fr;
  }

  .esg-sub-box {
    flex-direction: column;
    text-align: center;
  }

  .esg-float-nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .esg-wrap {
    padding: 0 16px;
  }

  .esg-steps {
    grid-template-columns: 1fr;
  }

  .esg-footer {
    flex-direction: column;
    text-align: center;
  }
}








/* .mi-about-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.mi-about-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mi-about-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media(max-width: 768px) {
  .mi-about-section {
    grid-template-columns: 1fr;
  }
} */

.mia2__wrap {
    padding: 100px 0;
    background: #ffffff;
  }
 
  .mia2__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
  }
 
  /* Top header row */
  .mia2__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e8e6e0;
  }
 
  .mia2__tag {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e05c20;
    margin-bottom: 16px;
  }
 
  .mia2__title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #111110;
    margin: 0;
    max-width: 560px;
    letter-spacing: -1.5px;
  }
 
  .mia2__title span {
    color: #e05c20;
  }
 
  .mia2__header-right {
    flex-shrink: 0;
    text-align: right;
  }
 
  .mia2__pill {
    display: inline-block;
    background: #111110;
    color: #f5f4f0;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 100px;
    white-space: nowrap;
  }
 
  /* Two column body */
  .mia2__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
 
  .mia2__left {}
 
  .mia2__intro {
    font-size: 20px;
    line-height: 1.65;
    color: #111110;
    font-weight: 500;
    margin: 0 0 28px;
  }
 
  .mia2__text {
    font-size: 15.5px;
    line-height: 1.85;
    color: #5a5955;
    margin: 0;
  }
 
  /* Right column — feature blocks */
  .mia2__right {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
 
  .mia2__feature {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e8e6e0;
  }
 
  .mia2__feature:first-child {
    padding-top: 0;
  }
 
  .mia2__feature:last-child {
    border-bottom: none;
  }
 
  .mia2__feat-num {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    color: #e05c20;
    font-weight: 700;
    letter-spacing: 1px;
    padding-top: 3px;
    flex-shrink: 0;
    width: 28px;
  }
 
  .mia2__feat-body {}
 
  .mia2__feat-title {
    font-size: 14px;
    font-weight: 700;
    color: #111110;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
  }
 
  .mia2__feat-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #5a5955;
    margin: 0;
  }
 
  /* Bottom strip */
  .mia2__strip {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid #e8e6e0;
    display: flex;
    gap: 0;
  }
 
  .mia2__region {
    flex: 1;
    padding: 0 28px;
    border-right: 1px solid #e8e6e0;
    text-align: center;
  }
 
  .mia2__region:first-child {
    padding-left: 0;
    text-align: left;
  }
 
  .mia2__region:last-child {
    border-right: none;
  }
 
  .mia2__region-name {
    font-size: 18px;
    font-weight: 700;
    color: #111110;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
  }
 
  .mia2__region-sub {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    color: #9a9890;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
 
  @media (max-width: 860px) {
    .mia2__header {
      flex-direction: column;
      align-items: flex-start;
    }
    .mia2__header-right { text-align: left; }
    .mia2__body {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .mia2__strip {
      flex-wrap: wrap;
      gap: 28px;
    }
    .mia2__region {
      flex: 0 0 calc(50% - 14px);
      border-right: none;
      padding: 0;
      text-align: left;
    }
  }








  .mit__section {
    padding: 80px 0 100px;
    background: #f5f4f0;
  }
 
  .mit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  /* Header */
  .mit__header {
    text-align: center;
    margin-bottom: 60px;
  }
 
  .mit__tag {
    display: inline-block;
    font-size: 11px;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e05c20;
    margin-bottom: 12px;
  }
 
  .mit__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #111110;
    letter-spacing: -1px;
    margin: 0 0 16px;
  }
 
  .mit__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #7a7870;
    max-width: 560px;
    margin: 0 auto;
  }
 
  /* Grid */
  .mit__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
 
  /* Card */
  .mit__card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
 
  .mit__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.10);
  }
 
  /* Image area */
  .mit__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e8e6e0;
  }
 
  .mit__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
 
  .mit__card:hover .mit__img-wrap img {
    transform: scale(1.05);
  }
 
  /* Accent bar on hover */
  .mit__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e05c20;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
 
  .mit__card:hover .mit__img-wrap::after {
    transform: scaleX(1);
  }
 
  /* Info */
  .mit__info {
    padding: 18px 20px 20px;
    border-top: 1px solid #f0eeea;
  }
 
  .mit__name {
    font-size: 15px;
    font-weight: 700;
    color: #111110;
    margin: 0 0 4px;
    letter-spacing: -0.2px;
  }
 
  .mit__role {
    font-size: 12px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e05c20;
    margin: 0;
  }
 
  /* Responsive */
  @media (max-width: 1024px) {
    .mit__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
 
  @media (max-width: 720px) {
    .mit__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
 
  @media (max-width: 420px) {
    .mit__grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
  }



  /* credential */

  /* ══════════════════════════════════════════════
   ALL STYLES SCOPED UNDER .mcred-page
   No global body/html/reset — safe to embed
══════════════════════════════════════════════ */

.mcred-page {
  --mc-teal:       #0d6e6e;
  --mc-teal-light: #1a9090;
  --mc-teal-dark:  #064444;
  --mc-orange:     #e85d1a;
  --mc-orange-lt:  #f47a40;
  --mc-cream:      #f9f6f1;
  --mc-ink:        #111820;
  --mc-muted:      #5a6470;
  --mc-border:     #ddd8d0;
  --mc-card:       #ffffff;
  --mc-gap:        80px;

  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
  background: var(--mc-cream);
  color: var(--mc-ink);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.mcred-page *, .mcred-page *::before, .mcred-page *::after {
  box-sizing: border-box;
}

/* ── HERO ── */
.mcred-page .mc-hero {
  background: var(--mc-teal-dark);
  color: white;
  padding: 125px 60px 50px;
  position: relative;
  overflow: hidden;
}
.mcred-page .mc-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,26,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.mcred-page .mc-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(26,144,144,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.mcred-page .mc-hero-logo {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 42px;
}
.mcred-page .mc-logo-mark {
  width: 52px; height: 52px;
  background: var(--mc-orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: white;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.mcred-page .mc-logo-text {
  font-size: 13px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.mcred-page .mc-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: white;
  max-width: 700px;
  margin: 0;
}
.mcred-page .mc-hero h1 span { color: var(--mc-orange); }
.mcred-page .mc-hero-sub {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}
.mcred-page .mc-accent-line {
  width: 70px; height: 4px;
  background: var(--mc-orange);
  margin: 24px 0 0;
  border-radius: 2px;
}

/* ── NAV TABS ── */
.mcred-page .mc-nav {
  background: var(--mc-teal-dark);
  padding: 0 60px;
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto;
}
.mcred-page .mc-nav::-webkit-scrollbar { height: 3px; }
.mcred-page .mc-nav::-webkit-scrollbar-thumb { background: var(--mc-orange); border-radius: 2px; }
.mcred-page .mc-tab {
  padding: 18px 24px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.mcred-page .mc-tab:hover { color: rgba(255,255,255,0.85); }
.mcred-page .mc-tab.active { color: var(--mc-orange); border-bottom-color: var(--mc-orange); }

/* ── CONTENT WRAPPER ── */
.mcred-page .mc-body { padding: 0 60px; }

/* ── SECTION ── */
.mcred-page .mc-section {
  padding: var(--mc-gap) 0 40px;
}
.mcred-page .mc-section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mc-orange);
  margin-bottom: 14px;
}
.mcred-page .mc-section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--mc-orange);
  border-radius: 1px;
}
.mcred-page .mc-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--mc-teal-dark);
  line-height: 1.1;
  max-width: 620px;
  margin: 0;
}
.mcred-page .mc-section-title em { color: var(--mc-orange); font-style: italic; }

/* ── CLIENT BLOCK ── */
.mcred-page .mc-client-block {
  margin-top: 40px; margin-bottom: 50px;
  border-left: 3px solid var(--mc-teal);
  padding-left: 24px;
}
.mcred-page .mc-client-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.mcred-page .mc-badge {
  background: var(--mc-teal);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  display: inline-block;
}
.mcred-page .mc-badge.pvt { background: var(--mc-orange); }
.mcred-page .mc-count {
  font-size: 12px; color: var(--mc-muted); letter-spacing: 1px;
}

/* ── PROJECT GRID ── */
.mcred-page .mc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
.mcred-page .mc-survey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

/* ── PROJECT CARD ── */
.mcred-page .mc-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.mcred-page .mc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mc-teal);
}
.mcred-page .mc-card.pvt::before { background: var(--mc-orange); }
.mcred-page .mc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,68,68,0.1);
}
.mcred-page .mc-card-size {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px;
  color: var(--mc-teal);
  line-height: 1; margin-bottom: 8px;
}
.mcred-page .mc-card-size.pvt { color: var(--mc-orange); }
.mcred-page .mc-card-desc {
  font-size: 12.5px; line-height: 1.65;
  color: var(--mc-muted); font-weight: 400;
  margin: 0;
}
.mcred-page .mc-card-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(13,110,110,0.08);
  color: var(--mc-teal);
}
.mcred-page .mc-card-tag.pvt {
  background: rgba(232,93,26,0.08);
  color: var(--mc-orange);
}

/* ── SURVEY CARD ── */
.mcred-page .mc-survey-card {
  background: var(--mc-card);
  border: 1px solid var(--mc-border);
  border-radius: 14px;
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.mcred-page .mc-survey-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mc-teal), var(--mc-orange));
}
.mcred-page .mc-survey-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,68,68,0.1);
}
.mcred-page .mc-survey-subject {
  font-family: 'DM Serif Display', serif;
  font-size: 17px; color: var(--mc-teal-dark);
  margin: 0 0 8px; line-height: 1.2;
}
.mcred-page .mc-survey-desc {
  font-size: 12px; color: var(--mc-muted);
  line-height: 1.6; margin: 0;
}

/* ── DIVIDER ── */
.mcred-page .mc-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--mc-border) 0%, transparent 100%);
  margin: 10px 0 0;
}

/* ── STATS BAR ── */
.mcred-page .mc-stats {
  background: var(--mc-teal-dark);
  margin: 0 -60px;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.mcred-page .mc-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; color: var(--mc-orange);
  line-height: 1;
}
.mcred-page .mc-stat-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ── FOOTER ── */
.mcred-page .mc-footer {
  background: var(--mc-ink);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 28px 60px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 80px;
}

/* ── FADE IN ── */
.mcred-page .mc-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.mcred-page .mc-fade.visible {
  opacity: 1; transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .mcred-page .mc-hero,
  .mcred-page .mc-body,
  .mcred-page .mc-nav { padding-left: 24px; padding-right: 24px; }
  .mcred-page .mc-stats { margin: 0 -24px; padding: 32px 24px; }
}




/* patners */

.mi-partners {
    font-family: 'Barlow', sans-serif;
    color: #111314;
    background: #ffffff;
    box-sizing: border-box;
  }
  .mi-partners *, .mi-partners *::before, .mi-partners *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* CSS vars scoped to wrapper */
  .mi-partners {
    --mi-teal:   #17303b;
    --mi-orange: #e8650a;
    --mi-black:  #111314;
    --mi-grey:   #4a5568;
    --mi-bg:     #ffffff;
    --mi-bg2:    #f5f7f9;
    --mi-border: #e2e8f0;
  }

  /* ── HERO ── */
  .mi-partners .mp-hero {
    background: var(--mi-bg2);
    border-bottom: 3px solid var(--mi-teal);
    padding: 70px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .mi-partners .mp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      90deg,
      rgba(23,48,59,0.05) 0px, rgba(23,48,59,0.05) 1px,
      transparent 1px, transparent 56px
    );
  }
  .mi-partners .mp-hero-inner { position: relative; z-index: 1; }

  .mi-partners .mp-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mi-orange);
    margin-bottom: 14px;
  }
  .mi-partners .mp-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(46px, 8vw, 80px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--mi-black);
    line-height: 1;
  }
  .mi-partners .mp-hero h1 span { color: var(--mi-teal); }
  .mi-partners .mp-hero p {
    margin-top: 16px;
    font-size: 15px; font-weight: 300;
    color: var(--mi-grey);
    max-width: 480px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
  }
  .mi-partners .mp-accent-line {
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--mi-orange), var(--mi-teal));
    margin: 22px auto 0;
  }

  /* ── SECTION ── */
  .mi-partners .mp-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 24px;
  }
  .mi-partners .mp-sec-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--mi-orange);
    margin-bottom: 10px;
  }
  .mi-partners .mp-sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--mi-black);
    line-height: 1.1;
    margin-bottom: 36px;
  }
  .mi-partners .mp-sec-title span { color: var(--mi-teal); }

  /* ── GRID ── */
  .mi-partners .mp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .mi-partners .mp-card {
    background: var(--mi-bg);
    border: 1.5px solid var(--mi-border);
    padding: 28px 24px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
  }
  .mi-partners .mp-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--mi-teal);
    transition: width 0.3s;
  }
  .mi-partners .mp-card:hover {
    border-color: var(--mi-teal);
    box-shadow: 0 6px 24px rgba(23,48,59,0.12);
    transform: translateY(-3px);
  }
  .mi-partners .mp-card:hover::after { width: 100%; }

  .mi-partners .mp-card-logo {
  height: 52px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.mi-partners .mp-card-logo img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
  .mi-partners .mp-card-cat {
    font-size: 10px; letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mi-orange);
    margin-bottom: 6px;
  }
  .mi-partners .mp-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700;
    text-transform: uppercase;
    color: var(--mi-black);
    margin-bottom: 8px;
  }
  .mi-partners .mp-card-desc {
    font-size: 13.5px; font-weight: 300;
    color: var(--mi-grey);
    line-height: 1.6;
  }

  /* ── CTA ── */
  .mi-partners .mp-cta {
    background: var(--mi-teal);
    padding: 60px 24px;
    text-align: center;
  }
  .mi-partners .mp-cta h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
  }
  .mi-partners .mp-cta h2 span { color: var(--mi-orange); }
  .mi-partners .mp-cta p {
    margin-top: 12px;
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 460px;
    margin-left: auto; margin-right: auto;
  }
  .mi-partners .mp-cta-btn {
    display: inline-block;
    margin-top: 28px;
    background: #fff;
    color: var(--mi-teal);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none; cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .mi-partners .mp-cta-btn:hover { background: var(--mi-orange); color: #fff; }

  /* ── REVEAL ── */
  .mi-partners .mp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .mi-partners .mp-reveal.mp-visible {
    opacity: 1;
    transform: translateY(0);
  }

/* ── DARK MODE ── */
body.dark-mode {
  background: #0f0f0f !important;
  color: #e0e0e0 !important;
}

body.dark-mode .navbar,
body.dark-mode .topbar {
  background: #1a1a2e !important;
}

body.dark-mode .navbar-brand,
body.dark-mode .nav-link,
body.dark-mode .text-muted,
body.dark-mode .text-dark {
  color: #e0e0e0 !important;
}

body.dark-mode .dropdown-menu {
  background: #1a1a2e !important;
  border-color: #333 !important;
}

body.dark-mode .dropdown-item {
  color: #e0e0e0 !important;
}

body.dark-mode .dropdown-item:hover {
  background: #2a2a4e !important;
}

body.dark-mode .footer {
  background: #0a0a1a !important;
}

body.dark-mode .bg-light {
  background: #1a1a2e !important;
}

body.dark-mode .bg-white,
body.dark-mode .pro-service-card,
body.dark-mode .esg-step,
body.dark-mode .esg-side-panel {
  background: #1e1e2e !important;
  border-color: #333 !important;
  color: #e0e0e0 !important;
}

body.dark-mode h1, body.dark-mode h2,
body.dark-mode h3, body.dark-mode h4,
body.dark-mode h5, body.dark-mode p {
  color: #e0e0e0 !important;
}

/* ================ Sample page ================ */
  .wp-wrap {
    background-color: #f7f7f7;
    font-family: 'Barlow', sans-serif;
    color: #1a1a1a;
    padding: 52px 60px 80px;
  }
  /* ── HERO BANNER ──────────────────────────────────── */

  .works-hero {
    background-color: #f97316;
    background-image:
      repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.04) 0px,
        rgba(255,255,255,0.04) 1px,
        transparent 1px,
        transparent 20px
      );
    padding: 100px 60px 60px;
    position: relative;
    overflow: hidden;
  }

  .works-hero::before {
    content: 'WORKS';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 260px;
    color: rgba(255,255,255,0.07);
    position: absolute;
    right: -20px;
    top: -30px;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
  }

  .works-hero-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
  }

  .works-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
  }

  .works-hero-title span {
    color: #fff3e0;
    display: block;
    font-size: 48px;
  }

  .works-hero-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
  }

  /* ── GROUP ───────────────────────────────────────── */

  .wp-group {
    margin-bottom: 56px;
  }

  .wp-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .wp-group-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #f97316;
    padding: 6px 16px;
    line-height: 1;
  }

  .wp-group-count {
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
  }

  .wp-group-divider {
    flex: 1;
    height: 1.5px;
    background-color: #e8e8e8;
  }

  /* ── GRID ────────────────────────────────────────── */

  .wp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* ── CARD ────────────────────────────────────────── */

  .wp-card {
    background-color: #ffffff;
    border: 1.5px solid #ececec;
    border-top: 3px solid #f97316;
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .wp-card:hover {
    box-shadow: 0 6px 24px rgba(249,115,22,0.13);
    transform: translateY(-2px);
  }

  .wp-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 10px 0;
  }

  .wp-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 20px 0;
    flex: 1;
  }

  .wp-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
  }

  .wp-card-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f97316;
    background-color: #fff5ee;
    padding: 5px 10px;
    border: 1px solid #fde0c8;
  }

  .wp-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f97316;
    color: #ffffff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .wp-dl-btn:hover {
    background-color: #ea6c0a;
  }

  /* ── RESPONSIVE ──────────────────────────────────── */

  @media (max-width: 960px) {
    .wp-wrap { padding: 36px 24px 60px; }
    .wp-cards { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 580px) {
    .wp-cards { grid-template-columns: 1fr; }
  }

  .mi-extfab-wrap{
    position:fixed;
    left:28px;
    bottom:28px;
    z-index:9999;
  }

  .mi-extfab-link{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    text-decoration:none;
    animation: mi-extfab-float 3.2s ease-in-out infinite;
  }

  .mi-extfab-link:focus-visible{
    outline:3px solid #f3873e;
    outline-offset:3px;
  }

  .mi-extfab-icon{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#ffffff;
    box-shadow:0 6px 22px rgba(0,0,0,.35);
  }

  .mi-extfab-logo{
    width:42px;
    height:42px;
    object-fit:contain;
    position:relative;
    z-index:2;
    pointer-events:none;
  }

  /* glowing halo, pulses behind the button */
  .mi-extfab-glow{
    position:absolute;
    inset:-8px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(243,135,62,.55) 0%, rgba(31,111,120,.40) 55%, transparent 75%);
    filter: blur(7px);
    animation: mi-extfab-pulse 2.4s ease-in-out infinite;
    z-index:1;
  }

  /* "Click Here" label below the button */
  .mi-extfab-label{
    font-size:13px;
    font-weight:600;
    line-height:1;
    color:#ffffff;
    background:rgba(0,0,0,.5);
    padding:5px 14px;
    border-radius:20px;
    white-space:nowrap;
    text-shadow:0 1px 2px rgba(0,0,0,.4);
  }

  @keyframes mi-extfab-float{
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
  }

  @keyframes mi-extfab-pulse{
    0%,100%{ opacity:.55; transform:scale(.9); }
    50%{ opacity:1; transform:scale(1.12); }
  }

  @media (prefers-reduced-motion: reduce){
    .mi-extfab-link, .mi-extfab-glow{ animation:none; }
  }

  @media (max-width:480px){
    .mi-extfab-wrap{ left:16px; bottom:16px; }
    .mi-extfab-icon{ width:60px; height:60px; }
    .mi-extfab-logo{ width:34px; height:34px; }
    .mi-extfab-label{ font-size:11px; padding:4px 10px; }
  }