/* ==============================
   ABOUT PAGE – MOBILE GADGET
================================ */

.mg-about-wrapper{
  max-width:1200px;
  margin:60px auto 120px;
  padding:0 16px;
  color:#0b1a39;
}

/* ------------------------------
   HERO
-------------------------------- */
.mg-about-hero{
  text-align:center;
  margin-bottom:60px;
}

.mg-about-hero h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:6px;
}

.mg-about-subtitle{
  font-size:18px;
  opacity:.75;
}

/* ------------------------------
   SOFT CONTENT PANEL
-------------------------------- */
.mg-about-panel{
  max-width:900px;
  margin:0 auto 60px;
  padding:32px 36px;

  background:linear-gradient(
    135deg,
    rgba(205,220,255,0.14),
    rgba(175,195,255,0.18)
  );
  backdrop-filter:blur(16px);

  border-radius:26px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 14px 34px rgba(0,0,0,.06);

  font-size:16px;
  line-height:1.8;
}

.mg-about-panel p{
  margin-bottom:18px;
}

.mg-about-panel strong{
  font-weight:700;
}

/* ------------------------------
   VALUES CARDS
-------------------------------- */
.mg-about-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:70px;
}

.mg-about-card{
  background:linear-gradient(
    135deg,
    rgba(205,220,255,.18),
    rgba(175,195,255,.22)
  );
  backdrop-filter:blur(18px);
  border-radius:22px;
  border:1px solid rgba(255,255,255,.22);
  padding:28px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}

.mg-about-card h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}

.mg-about-card p{
  font-size:15px;
  opacity:.9;
}

/* ------------------------------
   HIGHLIGHT STATEMENT
-------------------------------- */
.mg-about-highlight{
  max-width:900px;
  margin:0 auto 70px;
  padding:30px 36px;

  background:linear-gradient(
    135deg,
    rgba(35,140,255,0.10),
    rgba(91,125,255,0.14)
  );

  border-radius:26px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);

  font-size:17px;
  line-height:1.75;
}

.mg-about-highlight strong{
  font-weight:800;
}

/* ------------------------------
   GRID SECTIONS (VISION / MISSION)
-------------------------------- */
.mg-about-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
  max-width:900px;
  margin:0 auto 70px;
}

.mg-about-grid > div{
  padding:28px 30px;

  background:linear-gradient(
    135deg,
    rgba(205,220,255,0.14),
    rgba(175,195,255,0.18)
  );
  backdrop-filter:blur(16px);

  border-radius:24px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}

.mg-about-grid h2{
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
}

/* ------------------------------
   LIST SECTIONS
-------------------------------- */
.mg-about-list-section{
  max-width:900px;
  margin:0 auto 70px;
  padding:30px 36px;

  background:linear-gradient(
    135deg,
    rgba(205,220,255,0.14),
    rgba(175,195,255,0.18)
  );
  backdrop-filter:blur(16px);

  border-radius:26px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.mg-about-list-section h2{
  font-size:22px;
  font-weight:800;
  margin-bottom:18px;
}

.mg-about-list{
  padding-left:18px;
}

.mg-about-list li{
  margin-bottom:12px;
  line-height:1.6;
}

/* ------------------------------
   RESPONSIVE
-------------------------------- */
@media(max-width:900px){
  .mg-about-cards,
  .mg-about-grid{
    grid-template-columns:1fr;
  }

  .mg-about-hero h1{
    font-size:34px;
  }
}
