/* ===== HERO ===== */
  .ind-hero {
    position: relative;
    margin-left: 3%;
    height: 580px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0 6% 180px;
  }

  .ind-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .ind-hero-darken {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
  }

  .ind-hero-band {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.45);
    clip-path: polygon(0 50%, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
  }

  .ind-hero-mask {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #537780;
    clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0 100%);
    z-index: 2;
  }

  .ind-hero-content {
    position: relative;
    z-index: 3;
  }

  .ind-hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  }

  /* ===== TEAL INTRO ===== */
  .ind-intro {
    background: #537780;
    margin-left: 3%;
    padding: 0 6% 60px;
  }

  .ind-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
  }

  .ind-intro-grid p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
  }

  /* ===== INDUSTRIES LIST ===== */
  .ind-list {
    background: #3c3b3b;
    margin-left: 3%;
    padding: 80px 5% 80px 5%;
  }

  .ind-item {
    margin-bottom: 70px;
  }

  .ind-item:last-child {
    margin-bottom: 0;
  }

  /* Even items shifted right */
  .ind-item.shifted .ind-group {
    margin-left: 26%;
  }

  /* Group: relative container for circle + box */
  .ind-group {
    position: relative;
    min-height: 420px;
  }

  /* Circle: behind the trapezoid */
  .ind-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
  }

  .ind-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .ind-item:hover .ind-circle img {
    transform: scale(1.06);
  }

  /* Trapezoid: on top of circle, same clip-path style as blog */
  .ind-box {
    position: relative;
    z-index: 2;
    background: #d4dadc;
    margin-left: 230px;
    clip-path: polygon(0 0, 100% 55px, 100% calc(100% - 25px), 0 100%);
    padding: 45px 70px 25px 25px;
    max-width: 500px;
    min-height: 350px;
    top: 30px;
  }


  .ind-box h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ffa700;
    margin-bottom: 14px;
    line-height: 1.3;
    max-width: 250px;
  }

  .ind-box p {
    font-size: 12.5px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .ind-features {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ind-features li {
    font-size: 12.5px;
    color: #537780;
    font-weight: 600;
    line-height: 1.9;
  }

  .ind-learn-more {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #ffa700;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid #ffa700;
    padding: 7px 16px;
    z-index: 3;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  .ind-learn-more--desktop {
    position: absolute;
    bottom: 5px;
    left: 230px;
  }

  .ind-learn-more--mobile {
    display: none;
    margin-top: 14px;
  }

  .ind-learn-more:hover {
    background: rgba(0, 0, 0, 0.78);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1000px) {
    .ind-item.shifted .ind-group {
      margin-left: 15%;
    }

    .ind-box {
      max-width: 420px;
    }
  }

  @media (max-width: 768px) {
    .ind-hero {
      margin-left: 0;
      height: 40vh;
      min-height: unset;
      padding: 0 5% 60px 20px;
      align-items: flex-end;
    }

    .ind-hero-band,
    .ind-hero-mask {
      left: 3%;
      width: 97%;
      height: 100px;
    }

    .ind-hero-content {
      top: -30px;
    }

    .ind-hero-content h1 {
      font-size: 42px;
      line-height: 1.1;
      letter-spacing: -1px;
    }

    .ind-intro {
      margin-left: 3%;
    }

    .ind-intro-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .ind-list {
      margin-left: 0;
      padding: 50px 20px;
    }

    .ind-item.shifted .ind-group {
      margin-left: 0;
    }

    .ind-group {
      min-height: 200px;
      padding-top: 0;
    }

    .ind-circle {
      width: 180px;
      height: 180px;
    }

    .ind-box {
      margin-left: 80px;
      max-width: calc(100% - 40px);
      clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 calc(100% - 20px));
      padding: 40px 45px 30px 20px;
      min-height: 190px;
    }

    .ind-box p {
      line-height: 1.4;
    }

    .ind-features li {
      line-height: 1.6;
    }

    .ind-learn-more--desktop {
      display: none;
    }

    .ind-learn-more--mobile {
      display: inline-block;
    }
  }

  @media (max-width: 480px) {
    .ind-hero-content h1 {
      font-size: 28px;
    }
  }