/* ══════════════════════════════════════════════
   MOOVEX — Services Content Styles
   /wp-content/themes/loraic/assets/css/moovex-services.css
   ══════════════════════════════════════════════ */

   .mx-service,
.mx-service *,
.mx-service h2,
.mx-service h3,
.mx-service p,
.mx-service li,
.mx-service span {
  font-family: 'Helios Extended', sans-serif !important;
}

/* ── BASE ── */
.mx-service {
  font-family: 'Helios Extended', sans-serif !important;
  color: #212134;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.mx-service *,
.mx-service *::before,
.mx-service *::after {
  box-sizing: border-box;
  font-family: 'Helios Extended', sans-serif !important;
}
.mx-container {
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Intro ── */
.mx-intro { padding: 60px 0 40px; }
.mx-intro h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: #8B75FE;
  margin: 0 0 20px;
  line-height: 1.2;
}
.mx-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: #505D7B;
  max-width: 780px;
  margin: 0;
}
.mx-intro p strong { color: #212134; font-weight: 700; }
.mx-intro .mx-sub {
  margin-top: 16px;
  font-size: 16px;
  color: #9CA3AF;
  font-style: italic;
}

/* ── Two-column cards ── */
.mx-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 60px;
}
.mx-card {
  background: #F4F4F8;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(108,58,237,.08);
}
.mx-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #8B75FE;
  border-radius: 4px 0 0 4px;
}
.mx-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.mx-card-icon {
  width: 40px; height: 40px;
  background: #8B75FE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mx-card-icon svg {
  width: 20px; height: 20px;
  color: #fff;
  stroke: currentColor;
  fill: none;
}
.mx-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #212134;
  margin: 0;
}
.mx-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mx-card li {
  font-size: 15px;
  color: #505D7B;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.mx-card li::before {
  content: '';
  width: 8px; height: 8px;
  background: #BFFF00;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Banner image ── */
.mx-banner { padding-bottom: 48px; }
.mx-banner img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* ── Advantages grid ── */
.mx-advantages {
  background: #F4F4F8;
  border-radius: 16px;
  padding: 52px 40px;
  margin-bottom: 60px;
}
.mx-advantages h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: #8B75FE;
  margin: 0 0 36px;
  text-align: center;
}
.mx-adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.mx-adv-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mx-adv-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(108,58,237,.1);
}
.mx-adv-num {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #A3E000;
  background: rgba(191,255,0,.18);
  padding: 2px 9px;
  border-radius: 20px;
}
.mx-adv-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #8B75FE, #4C1D95);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.mx-adv-icon svg {
  width: 24px; height: 24px;
  color: #fff;
  stroke: currentColor;
  fill: none;
}
.mx-adv-item p {
  font-size: 14px;
  font-weight: 600;
  color: #212134;
  line-height: 1.45;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mx-two-col { grid-template-columns: 1fr; }
  .mx-advantages { padding: 36px 20px; }
  .mx-adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mx-intro { padding: 40px 0 28px; }
  .mx-card { padding: 28px 22px; }
  .mx-adv-grid { grid-template-columns: 1fr; }
}