/* =====================================================
   PAGE ABOUT — MICRO MART / MICRO MARKET SECTION
===================================================== */

.section-micro-mart {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #ffffff;
    overflow: hidden;
  }
  
  .section-micro-mart::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(59,130,246,.18), transparent 70%);
    pointer-events: none;
  }
  
  .micro-mart-header {
    text-align: center;
    margin-bottom: 42px;
  }
  
  .micro-eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 14px;
  }
  
  .micro-mart-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.2;
    font-weight: 800;
    max-width: 850px;
    margin: 0 auto;
  }
  
  .micro-mart-content {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
  }
  
  .micro-mart-content p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255,255,255,.9);
    margin-bottom: 20px;
  }
  
  /* BENEFITS GRID */
  .micro-mart-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 22px;
    margin-top: 25px;
  }
  
  .micro-benefit {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 26px 22px;
    text-align: center;
    transition: transform .35s ease, border-color .35s ease;
  }
  
  .micro-benefit:hover {
    transform: translateY(-6px);
    border-color: rgba(96,165,250,.5);
  }
  
  .micro-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
  }
  
  .micro-benefit h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .micro-benefit p {
    font-size: .98rem;
    color: rgba(255,255,255,.78);
    line-height: 1.6;
  }
  
  /* ENTRY ANIMATION */
  .micro-reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  
  .micro-reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all .75s cubic-bezier(.2,.7,.2,1);
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .section-micro-mart {
      padding: 80px 0;
    }
  
    .micro-mart-content p {
      font-size: 1rem;
    }
  }