.ml-section-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ml-why-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.ml-why-section::before,
.ml-why-section::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
}

.ml-why-section::before {
  left: -9rem;
  top: 7rem;
  background: rgba(89, 141, 255, 0.18);
}

.ml-why-section::after {
  right: -9rem;
  bottom: 1rem;
  background: rgba(245, 196, 24, 0.14);
}

.ml-why-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.4fr);
  gap: 4rem;
  align-items: start;
}

.ml-why-intro {
  position: sticky;
  top: 8rem;
}

.ml-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 999px;
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(20,29,79,0.06);
  color: #253b8f;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.ml-mini-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.ml-eyebrow {
  display: block;
  color: #3366ff;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ml-why-title,
.ml-purpose-title {
  font-family: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin: 0.75rem 0 1.25rem;
}

.ml-why-title {
  color: #141d4f;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ml-why-copy {
  max-width: 36rem;
  color: rgba(37, 59, 143, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.ml-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.9rem 1.45rem;
  border-radius: 0.8rem;
  background: #3366ff;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(51,102,255,0.18);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.ml-primary-link:hover {
  background: #2554e8;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(51,102,255,0.26);
}

.ml-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ml-reason-card {
  position: relative;
  overflow: hidden;
  min-height: 15.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.68);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 14px 38px rgba(20,29,79,0.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ml-reason-card:nth-child(2),
.ml-reason-card:nth-child(3) {
  transform: translateY(1.5rem);
}

.ml-reason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51,102,255,0.25);
  box-shadow: 0 18px 44px rgba(51,102,255,0.12);
}

.ml-reason-card:nth-child(2):hover,
.ml-reason-card:nth-child(3):hover {
  transform: translateY(1.15rem);
}

.ml-reason-card::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  top: -3rem;
  right: -3rem;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.22);
}

.ml-reason-card:nth-child(1) { background-image: linear-gradient(135deg, rgba(51,102,255,0.09), rgba(255,255,255,0.55)); }
.ml-reason-card:nth-child(2) { background-image: linear-gradient(135deg, rgba(245,196,24,0.09), rgba(255,255,255,0.58)); }
.ml-reason-card:nth-child(3) { background-image: linear-gradient(135deg, rgba(89,141,255,0.10), rgba(255,255,255,0.58)); }
.ml-reason-card:nth-child(4) { background-image: linear-gradient(135deg, rgba(245,196,24,0.07), rgba(89,141,255,0.06), rgba(255,255,255,0.6)); }

.ml-icon-box {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 7px 20px rgba(20,29,79,0.07);
  margin-bottom: 1.65rem;
}

.ml-icon-box svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: #3366ff;
}

.ml-reason-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  color: #141d4f;
  font-family: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.ml-reason-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(37,59,143,0.72);
  line-height: 1.7;
}

.ml-purpose-section {
  position: relative;
  padding: 2rem 0 6rem;
}

.ml-purpose-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 4rem);
  border-radius: 2rem;
  background-color: #141d4f;
  background-image:
    radial-gradient(circle at 83% 10%, rgba(51,102,255,0.22), transparent 28%),
    radial-gradient(circle at 8% 96%, rgba(245,196,24,0.12), transparent 28%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.10) 1px, transparent 0);
  background-size: auto, auto, 24px 24px;
  box-shadow: 0 24px 65px rgba(20,29,79,0.18);
}

.ml-purpose-header {
  position: relative;
  max-width: 48rem;
  margin-bottom: 2.6rem;
}

.ml-purpose-eyebrow {
  color: #8eb0ff;
}

.ml-purpose-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ml-purpose-header p {
  margin: 0;
  color: rgba(229,236,255,0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.ml-purpose-main-grid,
.ml-purpose-sub-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.ml-purpose-main-grid { margin-bottom: 1.25rem; }

.ml-purpose-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.075);
  backdrop-filter: blur(12px);
}

.ml-purpose-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(51,102,255,0.16);
  filter: blur(28px);
}

.ml-purpose-card:nth-child(2)::after { background: rgba(245,196,24,0.13); }

.ml-purpose-icon {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: rgba(89,141,255,0.14);
  border: 1px solid rgba(142,176,255,0.18);
}

.ml-purpose-card:nth-child(2) .ml-purpose-icon {
  background: rgba(245,196,24,0.10);
  border-color: rgba(245,196,24,0.16);
}

.ml-purpose-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  stroke: #aec5ff;
}

.ml-purpose-card:nth-child(2) .ml-purpose-icon svg { stroke: #f8d75f; }

.ml-card-kicker {
  position: relative;
  z-index: 1;
  display: block;
  color: #8eb0ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.ml-purpose-card:nth-child(2) .ml-card-kicker { color: #f4cf4b; }

.ml-purpose-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.9rem;
  color: #fff;
  font-family: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.35;
}

.ml-purpose-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(229,236,255,0.68);
  line-height: 1.72;
}

.ml-purpose-sub-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 1.15rem;
  background: rgba(255,255,255,0.045);
}

.ml-purpose-sub-icon {
  flex: none;
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.08);
}

.ml-purpose-sub-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #aec5ff;
}

.ml-purpose-sub-card h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-family: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.05rem;
}

.ml-purpose-sub-card p {
  margin: 0;
  color: rgba(229,236,255,0.63);
  font-size: 0.9rem;
  line-height: 1.65;
}

.ml-hero-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 5rem;
}

.ml-hero-strength {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 1rem;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(20,29,79,0.07);
}

.ml-hero-strength .ml-icon-box {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  border-radius: 0.8rem;
  background: rgba(51,102,255,0.08);
}

.ml-hero-strength .ml-icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ml-hero-strength h3 {
  margin: 0 0 0.25rem;
  color: #141d4f;
  font-family: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1rem;
}

.ml-hero-strength p {
  margin: 0;
  color: rgba(37,59,143,0.68);
  font-size: 0.875rem;
  line-height: 1.55;
}

@media (max-width: 1023px) {
  .ml-why-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .ml-why-intro { position: relative; top: auto; }
}

@media (max-width: 767px) {
  .ml-why-section { padding: 4.5rem 0; }
  .ml-purpose-section { padding: 1rem 0 4.5rem; }
  .ml-reason-grid,
  .ml-purpose-main-grid,
  .ml-purpose-sub-grid,
  .ml-hero-strengths { grid-template-columns: 1fr; }
  .ml-reason-card:nth-child(2),
  .ml-reason-card:nth-child(3),
  .ml-reason-card:nth-child(2):hover,
  .ml-reason-card:nth-child(3):hover { transform: none; }
  .ml-reason-card { min-height: auto; }
  .ml-purpose-panel { border-radius: 1.5rem; }
}
