/* ==================================================
   ABOUT PAGE - SMART VENDING SECTION
   Premium Enterprise Style
================================================== */

.section-smart-vending {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
  }
  
  /* subtle accent glow */
  .section-smart-vending::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -260px;
    right: -200px;
    background: radial-gradient(circle, rgba(15,23,42,0.06), transparent 70%);
    pointer-events: none;
  }
  
  .vending-header {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 70px;
  }
  
  .vending-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 14px;
  }
  
  .vending-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 18px;
  }
  
  .vending-header p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.85;
  }
  
  .vending-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 38px;
    align-items: start;
  }
  
  .vending-main p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 20px;
  }
  
  .vending-main strong {
    color: #0f172a;
  }
  
  /* FEATURE PANEL */
  .vending-features {
    display: grid;
    gap: 18px;
  }
  
  .vending-feature {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 14px;
    padding: 22px 22px;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  
  .vending-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(2,6,23,0.12);
  }
  
  .vending-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(15,23,42,0.08);
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .vending-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
  }
  
  .vending-feature p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
    font-size: 0.95rem;
  }
  
  /* reveal animation */
  .vending-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .75s ease;
  }
  
  .vending-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* mobile */
  @media (max-width: 900px) {
  
    .section-smart-vending {
      padding: 85px 0;
    }
  
    .vending-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
  }