.serviceProcess{
/*max-width:1200px;
margin:auto;
padding:80px 20px;*/
}

.processTitle{
text-align:center;
font-size:32px;
margin-bottom:30px;
letter-spacing:2px;
}

.processGrid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:50px 40px;
position:relative;
}

/* 卡片 */
.processItem{
text-align:center;
position:relative;
}

/* 圓點 */
.processDot{
width:44px;
height:44px;
background:#b19365;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
margin:auto;
margin-bottom:25px;
position:relative;
}

/* 線條 */
.processItem:not(:nth-child(3n)) .processDot::after{
content:"";
position:absolute;
top:50%;
left:44px;
width:calc(100% + 40px);
height:2px;
background:#e5e5e5;
transform:translateY(-50%);
z-index:-1;
}

/* 圖片 */
.processItem img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
margin-bottom:15px;
transition:0.4s;
}

.processItem:hover img{
transform:scale(1.05);
}

/* 標題 */
.processItem h3{
font-size:18px;
/*margin-bottom:8px;*/
}

/* 文字 */
.processItem p{
font-size:14px;
color:#666;
line-height:1.7;
}

/* RWD */
@media (max-width:900px){

.processGrid{
grid-template-columns:1fr;
gap:50px;
}

.processItem .processDot::after{
display:none;
}

}
















.process-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 32px 28px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
  }

  .process-header {
    text-align: center;
    margin-bottom: 26px;
  }

  /* 主標題字級 */
  .process-title {
    font-size: 24px;
    letter-spacing: 0.16em;
    color: var(--accent-gold);
    font-weight: 700;
    margin: 0 0 8px;
  }

  .process-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 8px;
  }

  .process-link-more {
    margin-top: 4px;
    font-size: 14px;
  }

  .process-link-more a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    padding-bottom: 1px;
  }

  .process-link-more a:hover {
    border-bottom-color: rgba(37, 99, 235, 0.7);
  }

  /* Timeline 主體 */
  .process-timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 18px;
  }

  /* 垂直線條 */
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 27px;
    width: 2px;
    background: linear-gradient(
      to bottom,
      rgba(201, 160, 99, 0.75),
      rgba(201, 160, 99, 0.1)
    );
  }

  .process-step {
    position: relative;
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 36px;
    padding: 16px 0;
  }

  .process-step:not(:last-child) {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
  }

  /* 左側圓點 */
  .process-step::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 26px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 160, 99, 0.1);
    z-index: 1;
  }

  /* Step 編號 */
  .process-step-index {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-left: 32px;
    margin-top: 6px;
  }

  .process-step-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    padding-left: 32px;
    /*margin-top: 10px;
    color: #b19365;*/
    color: #222;
    line-height: 1.5;
  }

  /* 右側內容 */
  .process-step-body {
    font-size: 15px;
    color: var(--text-main);
  }

  .process-step-body p {
    margin: 0 0 6px;
    line-height: 1.8;
  }

  .process-step-body p strong {
    font-weight: 600;
  }

  .process-step-body .process-link-inline {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    font-size: 14px;
  }

  .process-step-body .process-link-inline a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
    padding-bottom: 1px;
  }

  .process-step-body .process-link-inline a:hover {
    border-bottom-color: rgba(37, 99, 235, 0.7);
  }

  .process-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
  }

  @media (max-width: 768px) {
    .process-section {
      padding: 24px 18px 22px;
      border-radius: 18px;
    }

    .process-step {
      grid-template-columns: minmax(0, 1fr);
      padding-left: 18px;
    }

    .process-step-index,
    .process-step-label {
      padding-left: 32px;
    }

    .process-timeline::before {
      left: 26px;
    }

    .process-step::before {
      left: 2px;
    }
  }