 /* ══════════════════════════════════════
     PRODUCTION DIVISIONS SECTION
  ══════════════════════════════════════ */
  .divisions-section {
    background: #282828;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
    
  }

  /* top gold accent line */
  .divisions-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #c9a84c 30%, #f0d080 50%, #c9a84c 70%, transparent 100%);
  }

  /* faint diagonal stripe bg */
  .divisions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      135deg,
      transparent,
      transparent 48px,
      rgba(201,168,76,.025) 49px,
      rgba(201,168,76,.025) 50px
    );
    pointer-events: none;
  }

  .divisions-section .container { position: relative; z-index: 1; }

  /* ── header ── */
  .div-eyebrow {
    text-align: center;
    margin-bottom: 12px;
  }
  .div-eyebrow span {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a84c;
    border: 1px solid rgba(201,168,76,.3);
    padding: 6px 22px;
    border-radius: 2px;
  }

  .div-main-heading {
    text-align: center;
    font-size: clamp(24px, 3.8vw, 40px);
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .div-main-heading em {
    font-style: normal;
    color: #c9a84c !important;
  }

  .div-intro {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 70px;
    color: rgba(255,255,255,.5);
    font-size: 15px;
    line-height: 1.75;
  }

  /* ── flow indicator ── */
  .div-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }

  .div-flow-step {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .div-flow-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
    background: rgba(255,255,255,.03);
    white-space: nowrap;
    transition: color .3s, border-color .3s;
  }
  .div-flow-label.active-flow {
    color: #c9a84c;
    border-color: rgba(201,168,76,.4);
    background: rgba(201,168,76,.07);
  }

  .div-flow-arrow {
    color: rgba(201,168,76,.4);
    font-size: 14px;
    padding: 0 8px;
  }

  /* ── division cards ── */
  .div-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
    .div-cards { grid-template-columns: 1fr; }
    .div-flow { gap: 6px; }
  }

  .div-card {
    background: #161616;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 4px;
    padding: 44px 40px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color .35s, background .35s;
  }
  .div-card:hover {
    background: #1a1a1a;
    border-color: rgba(201,168,76,.3);
  }

  /* left gold bar on hover */
  .div-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #c9a84c, transparent);
    opacity: 0;
    transition: opacity .35s;
  }
  .div-card:hover::before { opacity: 1; }

  /* large bg number */
  .div-card-bg-num {
    position: absolute;
    bottom: -10px; right: 20px;
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: rgba(201,168,76,.14);
    pointer-events: none;
    transition: color .35s;
  }
  .div-card:hover .div-card-bg-num { color: rgba(201,168,76,.08); }

  /* card top row */
  .div-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .div-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 3px;
    border: 1.5px solid rgba(201,168,76,.35);
    background: rgba(201,168,76,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .35s, border-color .35s;
  }
  .div-card:hover .div-card-icon {
    background: rgba(201,168,76,.15);
    border-color: #c9a84c;
  }
  .div-card-icon i {
    font-size: 22px;
    color: #c9a84c;
  }

  .div-card-meta { flex: 1; }

  .div-card-tag {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 6px;
    display: block;
  }

  .div-card-title {
    font-size: 19px !important;
    font-weight: 700;
    color: #fff !important;
    margin: 0;
    line-height: 1.25;
  }

  /* gold divider */
  .div-card-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,.3), transparent);
    margin-bottom: 22px;
  }

  /* description */
  .div-card-desc {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  /* machine pills */
  .div-machine-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .div-machine-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 3px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .div-machine-name {
    font-size: 13.5px;
    color: rgba(255,255,255,.9);
    font-weight: 500;
    flex: 1;
  }

  .div-machine-make {
    font-size: 13.5px;
    color: rgba(255,255,255,.38);
  }

  .div-machine-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c9a84c;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    padding: 3px 10px;
    border-radius: 2px;
    white-space: nowrap;
  }

  /* ── totals bar ── */
  .div-totals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 4px;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .div-totals { grid-template-columns: repeat(2, 1fr); }
  }

  .div-total-item {
    padding: 30px 28px;
    border-right: 1px solid rgba(201,168,76,.12);
    text-align: center;
  }
  .div-total-item:last-child { border-right: none; }

  .div-total-num {
    font-size: 36px;
    font-weight: 800;
    color: #c9a84c !important;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
  }

  .div-total-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
  }