
  .step-process-section{
    background-color: #f5f5f5;
    color: #1a1a1a;
  }

  /* ── TOP HEADER ── */
  .section-header {
    margin-bottom: 64px;
    text-align: start;
  }

  .section-heading {
    /* font-family: 'Playfair Display', Georgia, serif; */
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    color: #060606;
    letter-spacing: -0.5px;
  }


  /* Folder tabs */
  .folders{
    display:flex;
    border-bottom:1px solid #1a1a1a;
  }
  .folder-tab{
    flex:1;
    padding:18px 12px;
    text-align:center;
    cursor:pointer;
    border:1px solid #d4cdc0;
    border-bottom:none;
    border-left:none;
    border-right:none;
    background:#f5f5f5;
    position:relative;
    transition: .2s;
    color:#999;
  }
  .folder-tab + .folder-tab{
    border-left:none;
  }
  .folder-tab .index{
    display:block;
    font-size: clamp(14px, .833vw, 16px);
    color:#da3333;
    letter-spacing:1px;
    margin-bottom:4px;
    font-family:'Inter',sans-serif;
    font-weight:700;
  }
  .folder-tab.active{
    background:#f5f0e8;
    color:#111;
    margin-top:-10px;
    padding-top:28px;
    border-color:#1a1a1a;
    z-index:2;
  }

  .panel{
    border:1px solid #1a1a1a;
    border-top:none;
    padding:56px 60px;
    display:none;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
  }
  .panel.active{
    display:grid;
  }

  .panel-left h3{
    font-weight:700;
    margin-bottom:18px;
  }
  .panel-left p{
    color:#666;
    max-width:440px;
  }
  .panel-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    border:1px solid #da3333;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
  }
  .panel-icon svg{
    width:28px;
    height:28px;
    stroke:#da3333;
    fill:none;
    stroke-width:1.6;
  }

  .panel-right{
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .deliverable{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    background:#fff;
    border:1px solid #e6dfd2;
    font-size:13.5px;
    color:#444;
  }
  .deliverable svg{
    width:16px;
    height:16px;
    stroke:#da3333;
    fill:none;
    stroke-width:2.4;
    flex-shrink:0;
  }