    .ap-teaser {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 40px 48px;
      background: #FFFFFF;
      border-radius: 20px;
      border: 1px solid rgba(10,15,30,0.07);
      box-shadow: 0 4px 24px rgba(10,15,30,0.06);
    }
    .ap-teaser-icon {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #6B21A8 0%, #A855F7 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ap-teaser-body { flex: 1; }
    .ap-teaser-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #9333EA;
      margin-bottom: 8px;
    }
    .ap-teaser-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #9333EA;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    .ap-teaser-body h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-white);
      margin: 0 0 8px;
      letter-spacing: -0.4px;
    }
    .ap-teaser-body p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
      max-width: 520px;
    }
    @media (max-width: 768px) {
      .ap-teaser {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 24px;
      }
      .ap-teaser-label { justify-content: center; }
      .ap-teaser-body p { max-width: 100%; }
    }

    /* ── Client Credentials + Feed ── */
    .clients-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 40px;
      align-items: start;
    }
    .client-creds-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .client-cred-card {
      background: #FFFFFF;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid rgba(10,15,30,0.07);
      position: relative;
      overflow: hidden;
    }
    .client-cred-card::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: 0 12px 32px rgba(10,15,30,0.10);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 16px;
    }
    .client-cred-card:hover::after { opacity: 1; }
    .cred-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .cred-avatar {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }
    .cred-meta { flex: 1; min-width: 0; }
    .cred-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-white);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .cred-role {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 1px;
    }
    .cred-stars {
      display: flex;
      gap: 2px;
    }
    .cred-stars svg { color: #F59E0B; }
    .cred-quote {
      font-size: 13.5px;
      color: #374151;
      line-height: 1.65;
      margin: 0 0 14px;
    }
    .cred-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
    }

    /* Feed panel */
    .client-feed-panel {
      background: #0D1117;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
    }
    .feed-panel-header {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .feed-panel-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: #FFFFFF;
    }
    .feed-live-badge {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 3px 9px;
      background: rgba(16,185,129,0.12);
      border: 1px solid rgba(16,185,129,0.25);
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      color: #10B981;
    }
    .feed-live-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #10B981;
      animation: pulse-dot 1.8s ease-in-out infinite;
    }
    .feed-list {
      padding: 8px 0;
      max-height: 400px;
      overflow: hidden;
    }
    .feed-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.2s ease;
    }
    .feed-item:last-child { border-bottom: none; }
    .feed-item:hover { background: rgba(255,255,255,0.03); }
    .feed-item-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .feed-item-body { flex: 1; min-width: 0; }
    .feed-item-action {
      font-size: 12.5px;
      color: rgba(255,255,255,0.85);
      line-height: 1.5;
      font-weight: 500;
    }
    .feed-item-client {
      font-size: 11px;
      color: rgba(255,255,255,0.38);
      margin-top: 2px;
    }
    .feed-item-time {
      font-size: 11px;
      color: rgba(255,255,255,0.30);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .feed-item-new .feed-item-action { color: #FFFFFF; }
    .feed-item-new { animation: feedSlideIn 0.4s ease; }
    @keyframes feedSlideIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .feed-panel-footer {
      padding: 12px 20px;
      border-top: 1px solid rgba(255,255,255,0.07);
      text-align: center;
    }
    .feed-panel-footer span {
      font-size: 11px;
      color: rgba(255,255,255,0.25);
    }

    @media (max-width: 1024px) {
      .clients-layout { grid-template-columns: 1fr; }
      .client-feed-panel { max-height: 340px; overflow: hidden; }
    }
    @media (max-width: 640px) {
      .client-creds-grid { grid-template-columns: 1fr; }
    }

    /* ── Explore Grid ── */
    .explore-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .explore-card {
      display: flex;
      flex-direction: column;
      gap: 0;
      background: #FFFFFF;
      border-radius: 16px;
      border: 1px solid rgba(10,15,30,0.07);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      position: relative;
    }
    .explore-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(10,15,30,0.10);
      border-color: rgba(245,158,11,0.30);
    }
    .explore-card-icon {
      padding: 28px 28px 20px;
      border-bottom: 1px solid rgba(10,15,30,0.05);
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
    .explore-card-icon span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 12px;
    }
    .explore-card-body {
      padding: 20px 24px 12px;
      flex: 1;
    }
    .explore-card-tag {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #8892A4;
      display: block;
      margin-bottom: 6px;
    }
    .explore-card-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-white);
      margin: 0 0 8px;
      letter-spacing: -0.3px;
      line-height: 1.3;
    }
    .explore-card-desc {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }
    .explore-card-arrow {
      display: block;
      padding: 14px 24px;
      font-size: 13px;
      font-weight: 600;
      color: #D97706;
      border-top: 1px solid rgba(10,15,30,0.05);
      transition: color 0.15s;
    }
    .explore-card:hover .explore-card-arrow { color: #B45309; }
    @media (max-width: 1100px) {
      .explore-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .explore-grid { grid-template-columns: 1fr; }
    }
