
    .support-page {
      max-width: 1300px;
      margin: 0 auto;
      padding: 2.5rem 2rem 4rem;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(2px);
    }

    /* breadcrumb */
    .service-context {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 1.8rem;
      background: rgba(255,255,255,0.8);
      padding: 0.75rem 1.5rem;
      border-radius: 60px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(21, 112, 239, 0.2);
    }

    .service-context a {
      text-decoration: none;
      color: #1e2b3c;
      font-weight: 600;
    }

    .badge-support {
      background: #1570ef;
      color: white;
      padding: 0.2rem 1.2rem;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-left: auto;
    }

    /* team header */
    .team-header {
      margin: 2rem 0 2.5rem 0;
    }

    .team-header h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(145deg, #0b2b40, #1f4b6e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      border-left: 8px solid #1570ef;
      padding-left: 1.5rem;
      line-height: 1.2;
    }

    .team-subhead {
      font-size: 1.2rem;
      color: #2e4059;
      max-width: 800px;
      margin-top: 0.8rem;
      background: rgba(255,255,255,0.6);
      padding: 0.9rem 2rem;
      border-radius: 50px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(0,0,0,0.05);
    }

    .team-subhead i {
      color: #1570ef;
      margin-right: 0.6rem;
    }

    /* grid – cards */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem 1.8rem;
      margin: 3rem 0 2rem;
    }

    .team-card {
      background: #ffffff;
      border-radius: 28px;
      padding-top: 1rem ;
      /* padding: 2rem 1.5rem 1.8rem; */
      box-shadow: 0 20px 30px -10px rgba(0, 30, 60, 0.08);
      transition: all 0.25s ease;
      border: 1px solid rgba(21, 112, 239, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .team-card:hover {
      transform: translateY(-6px);
      border-color: rgba(21, 112, 239, 0.3);
      box-shadow: 0 28px 38px -14px rgba(20, 80, 170, 0.15);
    }

    /* 🖼️ IMAGE PLACEHOLDER - bigger (170px) */
    .image-placeholder {
      width: 200px;
      height: 270px;
      background: #d9e2ef; /* soft grey-blue, indicates "photo area" */
      /* border-radius: 50%; */
      margin-bottom: 1.8rem;
      border: 5px solid white;
      box-shadow: 0 12px 22px -10px rgba(0,50,90,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: 0.2s;
      /* important: hide overflow so image fits circle */
      overflow: hidden;
    }

    /* style for images inside placeholder - makes them fill the circle */
    .image-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* border-radius: 50%; */
      display: block;
    }

    /* dashed border to emphasise "add photo" — only show if no image inside */
    .image-placeholder:not(:has(img))::after {
      content: "";
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      bottom: 12px;
      /* border-radius: 50%; */
      border: 2px dashed rgba(21, 112, 239, 0.3);
      pointer-events: none;
    }

    /* background gradient only when empty */
    .image-placeholder:not(:has(img)) {
      background-image: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.5) 10%, transparent 40%);
    }

    /* on hover, tiny tooltip "place image" — only for empty placeholders */
    .image-placeholder:not(:has(img)):hover::before {
      content: "📷 place image";
      position: absolute;
      background: rgba(0,0,0,0.6);
      color: white;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 30px;
      bottom: -5px;
      white-space: nowrap;
      z-index: 10;
      letter-spacing: 0.3px;
      backdrop-filter: blur(2px);
    }

    .team-card h3 {
      font-size: 1.7rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #0c2b40;
      margin-bottom: 0.3rem;
    }

    .team-card .role {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #1570ef;
      background: rgba(21, 112, 239, 0.08);
      padding: 0.4rem 1.3rem;
      border-radius: 40px;
      display: inline-block;
      margin: 0.7rem 0 0.3rem;
      border: 1px solid rgba(21,112,239,0.2);
    }

    .team-card .meta-sep {
      width: 44px;
      height: 3px;
      background: #1570ef;
      opacity: 0.25;
      margin: 0.8rem auto 0.2rem;
      border-radius: 4px;
    }

    .card-footer {
      margin-top: 1.2rem;
      font-size: 0.95rem;
      color: #5f7a9c;
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      border-top: 1px dashed rgba(21,112,239,0.2);
      padding-top: 1rem;
      width: 100%;
    }

    .card-footer i {
      color: #1570ef;
      font-size: 1.1rem;
    }

    /* support footer */
    .support-context-footer {
      margin-top: 4rem;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(8px);
      border-radius: 40px;
      padding: 2rem 2.5rem;
      border: 1px solid rgba(21,112,239,0.2);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #1570ef;
      color: #1570ef;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: 0.2s;
    }

    .btn-outline:hover {
      background: #1570ef;
      color: white;
    }

    @media (max-width: 600px) {
      .support-page { padding: 1.5rem 1rem; }
      .team-header h1 { font-size: 2.4rem; }
      .image-placeholder { width: 140px; height: 140px; }
    }

    /* optional junior style */
    .team-card.junior .role {
      background: rgba(100, 120, 140, 0.1);
      color: #4f6f8f;
    }