.industries-section{
    max-width:1080px;
    margin:0 auto;
    padding:0px 56px;
  }

  /* ---------- Header ---------- */
  .section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 48px;
  }

  .eyebrow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-size:14px;
    font-weight:700;
    letter-spacing:0.14em;
    color:#0a5fc7;
    margin-bottom:14px;
    text-transform:uppercase;
  }

  .eyebrow::before,
  .eyebrow::after{
    content:"";
    display:block;
    width:34px;
    height:2px;
    background:#0a5fc7;
    border-radius:2px;
  }

  .section-header h1{
    font-size:clamp(28px, 4vw, 42px);
    font-weight:600;
    color:#000;
    line-height:1.2;
    margin-bottom:16px; margin-top:10px;
    letter-spacing:-0.01em;
  }

  .section-header p{
    font-size:17px;
    line-height:1.6;
    color:#000;
  }

  /* ---------- Grid ---------- */
  .industries-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
  }

  /* Base card: relative + isolate so the animated border pseudo-element
     (added below) sits correctly above the card but under its content. */
  .industry-card{
    position:relative;
    isolation:isolate;
    display:flex;
    flex-direction:column;
   /* background:var(--white);
    border:2px solid var(--border);*/
    border-radius:14px;
    overflow:hidden;
   /* box-shadow:var(--shadow);*/
    text-decoration:none;
    transition:transform .28s ease, box-shadow .28s ease, border-color .3s ease;
  }

  .industry-card:hover,
  .industry-card:focus-visible{
    transform:translateY(-6px);
   /* box-shadow:var(--shadow-hover);
    border-color:#00479e;*/
    outline:none;
  }

  /* Animated "running line" border: a conic-gradient sweep that traces
     the card outline on hover. Falls back gracefully to the simple
     border-color darken above in browsers without @property support. */
  @property --border-angle{
    syntax:'<angle>';
    inherits:false;
    initial-value:0deg;
  }

  .industry-card1::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:16px;
    padding:2px;
    background:conic-gradient(from var(--border-angle), transparent 0%, transparent 75%, #0a5fc7 92%, #00479e 100%);
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    pointer-events:none;
    z-index:2;
    transition:opacity .25s ease;
  }

  .industry-card:hover::before,
  .industry-card:focus-visible::before{
    opacity:1;
    animation:border-run 1.8s linear infinite;
  }

  @keyframes border-run{
    to{ --border-angle:360deg; }
  }

  .card-media{
    position:relative;
    /*aspect-ratio:4/3;*/
    overflow:hidden;
    /*background:var(--blue-light);*/
  }

  .card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .icon-badge{
    position:absolute;
    top:14px;
    left:14px;
    width:46px;
    height:46px;
    border-radius:50%;
    background:#fff;
    border:2px solid #00479e;
    display:none; /* flex; */
    align-items:center;
    justify-content:center;
    font-size:19px;
    color:#0a5fc7;
    box-shadow:0 3px 8px rgba(0,0,0,0.12);
    z-index:1;
  }

  /* Footer name bar is OFF by default because the source images already
     include the industry name baked in. To turn it back on (e.g. if a
     client supplies plain photos with no text), add the class
     "show-labels" to the .industries-grid element below. */
  .card-footer{
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    background:#00479e;
    color:#fff;
    padding:16px 20px;
    margin-top:auto;
  }

  .industries-grid.show-labels .card-footer{
    display:flex;
  }

  .card-footer .label{
    display:flex;
    align-items:center;
    gap:12px;
  }

  .card-footer .glyph{
    font-size:18px;
    line-height:1;
    flex-shrink:0;
    color:#BFD4F7;
  }

  .card-footer .title{
    font-family:'Montserrat', sans-serif;
    font-weight:700;
    font-size:15px;
    line-height:1.3;
    letter-spacing:0.01em;
    text-transform:uppercase;
  }

  .card-footer .chevron{
    font-size:20px;
    line-height:1;
    color:#BFD4F7;
    transition:transform .25s ease, color .25s ease;
    flex-shrink:0;
  }

  .industry-card:hover .chevron{
    transform:translateX(4px);
    color:#fff;
  }

  /* ---------- Footer strip ---------- */
  .trust-strip{
    text-align:center;
    margin-top:56px;
  }

  .trust-strip .badges{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px 14px;
    font-family:'Montserrat', sans-serif;
    font-weight:700;
    font-size:15px;
    color:#000;
    margin-bottom:10px;
  }

  .trust-strip .badges .truck{
    font-size:20px;
    color:#0a5fc7;
    margin-right:2px;
  }

  .trust-strip .badges .dot{
    color:#0a5fc7;
    font-weight:700;
  }

  .trust-strip .tagline{
    font-size:15px;
    color:#000;
  }

  /* ---------- Responsive ---------- */
  @media (max-width:900px){
    .industries-grid{
      grid-template-columns:repeat(2, 1fr);
    }
  }

  @media (max-width:560px){
    .industries-section{
      padding:48px 16px 40px;
    }
    .industries-grid{
      grid-template-columns:1fr;
      gap:18px;
    }
    .section-header{
      margin-bottom:34px;
    }
    .card-footer .title{
      font-size:14px;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .industry-card,
    .chevron{
      transition:none;
    }
    .industry-card:hover::before,
    .industry-card:focus-visible::before{
      animation:none;
      opacity:1;
    }
  }