    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .team-card {
      --accent: #2563EB;
      --accent-soft: rgba(37,99,235,0.1);
      position: relative;
      background: var(--card-bg);
      border: 1px solid rgba(15,23,42,0.06);
      border-radius: 16px;
      padding: 32px 24px 26px;
      text-align: center;
      box-shadow: 0 1px 2px rgba(15,23,42,0.02), 0 4px 12px rgba(15,23,42,0.03);
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
      overflow: hidden;
    }
    /* Subtle accent gradient bar at the top — gives each card a colored anchor */
    .team-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, transparent 70%);
      opacity: 0.5;
      transition: opacity 0.22s ease;
    }
    .team-card:hover {
      transform: translateY(-4px);
      border-color: var(--accent-soft);
      box-shadow:
        0 2px 4px rgba(15,23,42,0.04),
        0 12px 28px rgba(15,23,42,0.06),
        0 0 0 1px var(--accent-soft);
    }
    .team-card:hover::before { opacity: 1; }
    /* Cycle accent colors across the 4 cards */
    .team-card:nth-child(1) { --accent: #FF6900; --accent-soft: rgba(255,105,0,0.12); }
    .team-card:nth-child(2) { --accent: #2563EB; --accent-soft: rgba(37,99,235,0.12); }
    .team-card:nth-child(3) { --accent: #10B981; --accent-soft: rgba(16,185,129,0.12); }
    .team-card:nth-child(4) { --accent: #8B5CF6; --accent-soft: rgba(139,92,246,0.14); }
    .team-avatar {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255,255,255,0.4) 100%);
      border: 1.5px solid var(--accent-soft);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; font-weight: 800;
      color: var(--accent);
      margin: 0 auto 18px;
      box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
      transition: transform 0.22s ease;
    }
    .team-avatar { overflow: hidden; }
    .team-avatar img {
      width: 100%; height: 100%;
      border-radius: 50%;
      object-fit: cover; object-position: center top;
      display: block;
    }
    .team-card:hover .team-avatar { transform: scale(1.05); }
    .team-name { font-weight: 700; margin-bottom: 4px; font-size: 1.05rem; letter-spacing: -0.01em; }
    .team-title { font-size: 0.78rem; color: var(--accent); font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
    .team-bio { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }
    .team-fun { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; font-style: italic; padding-top: 12px; border-top: 1px solid rgba(15,23,42,0.06); }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .value-card {
      background: var(--card-bg);
      border: 1px solid rgba(15,23,42,0.06);
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: 0 1px 2px rgba(15,23,42,0.02), 0 4px 12px rgba(15,23,42,0.03);
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }
    .value-card:hover {
      transform: translateY(-3px);
      border-color: rgba(37,99,235,0.18);
      box-shadow:
        0 2px 4px rgba(15,23,42,0.04),
        0 12px 28px rgba(15,23,42,0.05),
        0 0 0 1px rgba(37,99,235,0.06);
    }
    .value-card:hover .icon-box { transform: scale(1.08); }
    .value-card h3 { margin: 18px 0 10px; letter-spacing: -0.01em; }
    .value-card p { font-size: 0.92rem; color: var(--text-body); line-height: 1.65; }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .industry-card {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: var(--card-bg);
      border: 1px solid rgba(15,23,42,0.06);
      border-radius: 12px;
      padding: 22px 22px;
      transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }
    .industry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(37,99,235,0.18);
      box-shadow: 0 4px 16px rgba(15,23,42,0.04);
    }
    .industry-icon {
      font-size: 1.15rem; flex-shrink: 0;
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(37,99,235,0.08);
      color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.22s ease;
    }
    .industry-card:hover .industry-icon { transform: scale(1.06); }
    .industry-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; color: var(--text-primary); letter-spacing: -0.005em; }
    .industry-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

    .story-block {
      max-width: 720px;
      margin: 0 auto;
    }
    .story-block p {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 20px;
      color: var(--text-body);
    }
    .pull-quote {
      position: relative;
      padding: 32px 36px 32px 56px;
      margin: 40px 0;
      background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(37,99,235,0.02) 100%);
      border: 1px solid rgba(37,99,235,0.12);
      border-left: 3px solid var(--blue);
      border-radius: 4px 16px 16px 4px;
      font-size: 1.18rem;
      font-style: italic;
      color: var(--text-primary);
      line-height: 1.55;
      font-weight: 500;
      letter-spacing: -0.01em;
      overflow: hidden;
    }
    /* Oversized decorative quote mark — same flair as testimonials */
    .pull-quote::before {
      content: '\201C';
      position: absolute;
      top: -16px; left: 12px;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 6rem;
      font-weight: 700;
      line-height: 1;
      color: var(--blue);
      opacity: 0.14;
      pointer-events: none;
    }

    @media (max-width: 1024px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .value-grid { grid-template-columns: 1fr; }
      .industry-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .team-grid { grid-template-columns: 1fr; }
    }