/* =====================================================
   ABOUT PAGE — SERVICE AREA + TRUST
===================================================== */

.section-service-area {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    color: #0f172a;
    overflow: hidden;
  }
  
  .service-header {
    text-align: center;
    margin-bottom: 42px;
  }
  
  .service-eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 14px;
  }
  
  .service-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.2;
    font-weight: 800;
    max-width: 840px;
    margin: 0 auto 16px;
  }
  
  .service-header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #334155;
  }
  
  .service-content {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
  }
  
  .service-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 20px;
  }
  
  /* TRUST GRID */
  .service-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 22px;
  }
  
  .trust-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all .35s ease;
  }
  
  .trust-item:hover {
    transform: translateY(-6px);
    border-color: #93c5fd;
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
  }
  
  .trust-number {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
  }
  
  .trust-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
  }
  
  .trust-item p {
    font-size: .96rem;
    color: #475569;
    line-height: 1.6;
  }
  
  /* REVEAL ANIMATION */
  .service-reveal {
    opacity: 0;
    transform: translateY(26px);
  }
  
  .service-reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: all .75s cubic-bezier(.2,.7,.2,1);
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
  
    .section-service-area {
      padding: 80px 0;
    }
  
    .service-header p,
    .service-content p {
      font-size: 1rem;
    }
  
  }